1.進入linux命令列,輸入 ipconfig ,檢視ip配置資訊.
2.在vm中的檢視該虛擬機器的網段和閘道器.
3.設定網絡卡配置資訊. 開啟檔案:vi /etc/sysconfig/network-script/ifcfg-eth0
4.ip位址修改項如下:
device=eth05.重啟服務 : service network restarttype=ethernet
onboot=yes
nm_controlled=yes
bootproto=static
ipaddr=192.168.216.200
gateway=192.168.216.2
dns1=192.168.216.2
defroute=yes
ipv4_failure_fatal=yes
ipv6init=no
6.ifconfig檢視是否修改完成.
1.service iptables stop (僅一次有效)
2.chkconfig iptables off (開機自動關閉防火牆,永久有效)
Linux防火牆設定
修改防火牆配置需要修改 etc sysconfig iptables 這個檔案,如果要開放哪個埠,在裡面新增一條 a rh firewall 1 input m state state new m tcp p tcp dport 1521 j accept 就可以了,其中 1521 是要開放的埠號,...
Linux防火牆設定
1 重啟後永久性生效 開啟 chkconfig iptables on 關閉 chkconfig iptables off 2 即時生效,重啟後失效 開啟 service iptables start 關閉 service iptables stop 需要說明的是對於linux下的其它服務都可以用以...
LINUX防火牆設定
在終端中輸入如下命令開啟防火牆 chkconfig iptables on 如閉防火牆則輸入 chkconfig iptables off 上述兩條命令均要重啟系統才能生效。如果不想通過重啟系統而即時生效的話,可以用 service 命令。缺點是重啟系統後設定會丟失。開啟了防火牆 service i...