其實(shí)作為北大青鳥的學(xué)員,在學(xué)習(xí)固有的網(wǎng)絡(luò)知識(shí)的同時(shí),要懂得去思考,去探索,下面就請(qǐng)北大青鳥IT培訓(xùn)的網(wǎng)絡(luò)專家來教你配置Linux網(wǎng)絡(luò)地址,希望你們能理解!
1.關(guān)閉與開啟網(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
關(guān)閉81端口:
iptables -I INPUT -i eth0 -p tcp --dport 81 -j DROP
iptables -I OUTPUT -o eth0 -p tcp --sport 81 -j DROP
2.關(guān)閉和開啟物理端口
UP: ifconfig eth0 up
DOWN: ifconfig eth0 down
或
/sbin/ifup eth0
/sbin/ifdown eth0
/sbin/ifup
ifdown 是對(duì)/etc/sysconfig/network-scripts/ifup down 的符號(hào)鏈接
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)卡上配置多個(gè)地址,則配置文件為ifcfg-eth0:1,ifcfg-eth0:2等
c.重啟network服務(wù),/etc/init.d/network restart或service network restart
這樣就輕松完成Linux網(wǎng)絡(luò)地址配置了。
如還有其他方面的關(guān)于網(wǎng)絡(luò)安全、網(wǎng)絡(luò)技術(shù)方面的疑問,可以訪問:http://m.xinlianmeng.net.cn/xsjl/index.html尋找你的解決答案。