2022年配置linux网关有关的命令及软件 .pdf
《2022年配置linux网关有关的命令及软件 .pdf》由会员分享,可在线阅读,更多相关《2022年配置linux网关有关的命令及软件 .pdf(4页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、配置 linux网关有关的命令及 软件iptables安装1、验证 iptables是否有安装#rpm -qa iptables iptables-1.2.7a-2 2、若没有装可以在第一 张光盘中的/REDHAT/RPMS目录中,找到名 为“iptables-1.2.7a-2.i386.rpm ”文件。#rpm -ivh iptables-1.2.7a-2.i386.rpm 3、为可以实现开机自动运行 iptables,可以输入“ntsysv ”或“setup ”来设置 iptables. 4、首先 查看网卡是否被激活 . #ifconfig eth0 up #ifconfig eth1 u
2、p 5、修改 /etc/sysctl.conf文件内容,将 “net.ipv4.ip_forward=”设置为 1 6、使用 IP forwarding 功能#echo 1 /proc/sys/net/ipv4/ip_forward 7、重新加 载/etc/rc.d/init.d/xinetd reload # /etc/rc.d/init.d/xinetd reload 8、IP 伪装,允许所有内部网 络的主机 连接到 internet. #iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -j MASQUERADE 9、保存配置文件 /etc
3、/sysconfig/iptables #/etc/rc.d/init.d/iptables save 10、启动 NAT功能(附加)#iptables -t nat -A POSTROUTING -o eth0 -j SNAT -to-source xxx.xxx.xx.xxx #iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -o eth0 -j SNAT -to 222.79.191.56 11、端口映射( PAT )#iptables -t nat -A PREROUTING -i eth0 -p tcp -dport 80 -j DN
4、AT -to 192.168.0.15:80 12、iptables防火墙包括 input 、output 、forward 三个链路例如:iptables -A INPUT -p tcp -dport 22 -j ACCEPT iptables -A OUTPUT -p tcp -dport 22 -j ACCEPT iptables -P INPUT DROP iptables -P OUTPUT DROP iptables -P FORWARD DROP 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - -
5、 - - - - - 第 1 页,共 4 页 - - - - - - - - - 13、查看过滤规则#iptables -L -n #iptables -t nat -L -n 14、删除过滤规则#iptables -F (清空所有 规则 ) #iptables -D INPUT 策略序号15、插入一条 过滤规则#iptables -I INPUT 策略序号 -p tcp -dport 5800 -j ACCEPT 16、解决做了 INPUT链过滤 之后, GUI没办法登陆问题 。#iptables -A INPUT -i lo -j ACCEPT #iptables -P INPUT DRO
6、P 17、重新启 动、停止 iptables #/etc/rc.d/init.d/iptables start #/etc/rc.d/init.d/iptables restart #/etc/rc.d/init.d/iptables stop 18、显示路由表netstat -r 或 route 19、静态路由配置命令#route add -net 202.199.249.0 netmask 255.255.255.0 gw 202.199.248.6 #route add -net 192.168.0.0 netmask 255.255.255.0 dev 192.168.2.254 #r
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年配置linux网关有关的命令及软件 2022 配置 linux 网关 有关 命令 软件
限制150内