HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Upgrade from IP chains to IP tables
Operating System - Linux
1828225
Members
2422
Online
109975
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2004 07:45 PM
02-18-2004 07:45 PM
Upgrade from IP chains to IP tables
Hi, I want to upgrade from ipchains to iptables is there any tool or an easy way to move all the rules from ipchains to iptables
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2004 07:50 PM
02-18-2004 07:50 PM
Re: Upgrade from IP chains to IP tables
what version of linux do you use?
generally
rpm -Uvh iptables-version to install the package of iptables
then
chkconfig ipchains off
chkconfig --del ipchains
to stop using ipchains
chkconfig --add iptables
chkconfig iptables on
to start using iptables
generally
rpm -Uvh iptables-version to install the package of iptables
then
chkconfig ipchains off
chkconfig --del ipchains
to stop using ipchains
chkconfig --add iptables
chkconfig iptables on
to start using iptables
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2004 09:47 AM
02-19-2004 09:47 AM
Re: Upgrade from IP chains to IP tables
The hardest part about converting from IPCHains to IPTables is the translating of the rules.
For the most part, the commands are silmiar.
DIfferences lie in the names of the chains (INPUT instead of input, etc.), the way masquerading/NAT work, the fact that there are different tables to put rules in, and that the flow of traffic is slightly different.
Some fundamentels to get you going:
http://www.netfilter.org/documentation/
The HOWTO's here are brilliant.
Basic things to know...
The 'forward' (FORWARD in iptables) chain doesn't see everything. Just stuff of which gets passed from one interface to the other.
Under IPChains, the Forward chain saw everything, including things that were destined for the firewall box. This is not the case in IPTables.
DENY isn't about any more. You want DROP.
'-m' are your friends! The 'state' module is nearly indespensable!
If you have sepecific issues with rules, post 'em here, we'll give you a hand.
For the most part, the commands are silmiar.
DIfferences lie in the names of the chains (INPUT instead of input, etc.), the way masquerading/NAT work, the fact that there are different tables to put rules in, and that the flow of traffic is slightly different.
Some fundamentels to get you going:
http://www.netfilter.org/documentation/
The HOWTO's here are brilliant.
Basic things to know...
The 'forward' (FORWARD in iptables) chain doesn't see everything. Just stuff of which gets passed from one interface to the other.
Under IPChains, the Forward chain saw everything, including things that were destined for the firewall box. This is not the case in IPTables.
DENY isn't about any more. You want DROP.
'-m
If you have sepecific issues with rules, post 'em here, we'll give you a hand.
One long-haired git at your service...
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Support
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP