- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Red Hat 7.2
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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
11-18-2003 12:18 PM
11-18-2003 12:18 PM
We have server which performs two functions that we know of....email and internet gateway.
I don't know much about NAT.
What and Where would I look at, to find out out if this box is performing NAT??
Thanks In Advance
Fred
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 12:23 PM
11-18-2003 12:23 PM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 12:57 PM
11-18-2003 12:57 PM
Re: Red Hat 7.2
The IP addresses have been changed to protect the innocent.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 02:26 PM
11-18-2003 02:26 PM
Re: Red Hat 7.2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2003 02:58 PM
11-18-2003 02:58 PM
Re: Red Hat 7.2
It uses ipchains by default, however, and thus you need to issue the following commands to make use of iptables:
service ipchains stop
rmmod ipchains
chkconfig --level 0123456 ipchains off
chkconfig --level 2345 iptables on
service iptables start
This will do most of the legwork for you.
After that , 'iptables -t nat' is your friend. DNAT, SNAT, REDIRECTS, or even MASQUERADE's.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2003 11:40 AM
11-19-2003 11:40 AM
Re: Red Hat 7.2
I now have somewhat of a clue.
When i did iptables -L i found out that iptables is really doing NAT.
Is there anything else that would work in conjunction with iptables? What/where should i check to find out exactly what this box is doing. We are in the process of building a new one.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2003 10:44 PM
11-19-2003 10:44 PM
Re: Red Hat 7.2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2003 11:20 PM
11-19-2003 11:20 PM
Re: Red Hat 7.2
Iptables is widely used for the following:
* build internet firewalls based on stateless and stateful packet filtering
* use NAT and masquerading for sharing internet access where you don't have enough addresses
*use NAT for implementing transparent proxies
* aid the tc+iproute2 system used to build sophisticated QoS routers
* do further packet manipulation (mangling) like altering the TOS field of the IP header
For more information:
www.iptables.org
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2003 11:30 PM
11-19-2003 11:30 PM
Re: Red Hat 7.2
service --status-all |grep running 2> /dev/zero
will output all running sevrices
Best regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2003 12:12 AM
11-20-2003 12:12 AM
Re: Red Hat 7.2
http://www.squid-cache.org
hth
J