其實作為北大青鳥的學員,在學習固有的網(wǎng)絡知識的同時,要懂得去思考,去探索,下面就請北大青鳥IT培訓的網(wǎng)絡專家來教你配置Linux網(wǎng)絡地址,希望你們能理解!
1.關閉與開啟網(wǎng)路端口:
開啟81端口:
iptables -I INPUT -i eth0 -p tcp --dport 81 -j ACCEPT
iptables -I OUTPUT -o eth0 -p tcp --sport 81 -j ACCEPT
關閉81端口:
iptables -I INPUT -i eth0 -p tcp --dport 81 -j DROP
iptables -I OUTPUT -o eth0 -p tcp --sport 81 -j DROP
2.關閉和開啟物理端口
UP: ifconfig eth0 up
DOWN: ifconfig eth0 down
或
/sbin/ifup eth0
/sbin/ifdown eth0
/sbin/ifup
ifdown 是對/etc/sysconfig/network-scripts/ifup down 的符號鏈接
3.網(wǎng)路地址的配置
a.ifconfig eth0 x.x.x.x netmask x.x.x.x broadcast x.x.x.
b.通過配置文件配置
/etc/sysconfig/network-scripts/下配置ifcfg-xx的文件
如:ifcfg-eth0
如果想要在一塊網(wǎng)卡上配置多個地址,則配置文件為ifcfg-eth0:1,ifcfg-eth0:2等
c.重啟network服務,/etc/init.d/network restart或service network restart
這樣就輕松完成Linux網(wǎng)絡地址配置了。
如還有其他方面的關于網(wǎng)絡安全、網(wǎng)絡技術方面的疑問,可以訪問:http://m.customercarejob.com/xsjl/index.html尋找你的解決答案。