码迷,mamicode.com
首页 > 其他好文 > 详细

防火墙内外网隔离实例

时间:2015-02-02 12:46:26      阅读:773      评论:0      收藏:0      [点我收藏+]

标签:iptables   firewall   vmware   dhcp   防火墙   

防火墙内外网隔离实例

1: Linux firewall allow intranet workstation (windows8) to access internet
2: Workstation(windows8) get ip from Linux DHCP server.


技术分享

条件

1: Computer with internet access
2: WMware workstation 9.0.
3: CentOS 6.4(firewall server).
4: CentOS 6.4(DHCP SERVER).

5: Windows 8 (Workstation).

解决方案

虚拟机

1: Install OS system in VMware.

技术分享

2: OS Network Settings.

Firewall:

1: WAN Network(NAT)
2: LAN Network(Host Only)

技术分享

DHCP

1: LAN Network.

技术分享

Windows 8

1: LAN Network.

技术分享

VM Hostonly Network

技术分享

防火墙

LAN(eth0) and WAN (eth1) Settings.
vi /etc/sysconfig/network-scripts/eth0

技术分享

vi /etc/sysconfig/network-scripts/eth1

技术分享

Service network restart.

技术分享

Check Firewall ip, WAN: ifconfig eth0 LAN: ifconfig eth1

技术分享

Check if can access internet: Ping www.google.com

技术分享

Check the Internet DNS, vi /etc/ resolv.conf

技术分享

vi /etc/rc.local, sh /etc/rc.local

技术分享

Check the Route, route -n.

技术分享

echo "1" > /proc/sys/net/ipv4/ip_forward**

技术分享

IPTABLES

1: Firewall server: iptables -t nat -A PREROUTING -i eth0 -j DNAT --to-destination 192.168.1.99
2: Firewall server: iptables -t nat -A POSTROUTING -s 192.168.1.99 -o eth0 -j SNAT --to-source 192.168.60.130
3: Firewall server: iptables -t nat -L

技术分享

DHCP服务器

vi /etc/sysconfig/network-scripts/ifcfg-eth0

技术分享

vi /etc/dhcp/dhcpd.conf

技术分享

Service dhcpd restart

技术分享

Windows客户端

Ip settings

技术分享

Check the Win8 if get ip from dhcp server. ipconfig/all

技术分享

客户端测试上网

4: Win8 Workstation: Go to Win8 check, if can access internet.

技术分享

5:service iptables stop: 再次打开网页,就不能网了


博主个人网站www.davis-wiki.com


防火墙内外网隔离实例

标签:iptables   firewall   vmware   dhcp   防火墙   

原文地址:http://4011746.blog.51cto.com/4001746/1610552

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!