首页 > 代码库 > linux 修改ip地址 和关闭防火墙设置

linux 修改ip地址 和关闭防火墙设置

修改ip 地址  和 关闭启动防火墙
1、ifconfig 查看  ip
2、如果没有网卡
   查看 ifcfg-eth0 文件是否存在
   cd /etc/sysconfig/network-scripts/
   ls -s  查看 
   如果有 查看   
   DEVICE=eth0
     HWADDR=00:0C:29:0f:b8:70
    这两个选项与
   vi /etc/udev/rules.d/70-persistent-net.rules
   中 的eth0 是否一样
   如果还不行就用 eth1 网卡
   vi /etc/udev/rules.d/70-persistent-net.rules  查看 eth0  和 eth1中的mac地址
   eth1网卡的mac地址00:0c:29:50:bd:17
   然后修改
   vi /etc/sysconfig/network-scripts/ifcfg-eth0
  修改
  DEVICE=eth1
   HWADDR=00:0C:29:0f:b8:70
  重启网卡
   service  network restart
3如果网卡已经存在 
     1 临时修改
           ifconfig  eth0 172.16.10.82
     2永久修改
     例子:由原来的DHCP改固定IP
DEVICE=eth0
HWADDR=00:0C:29:F7:EF:BF
ONBOOT=yes
TYPE=Ethernet
NETMASK=255.255.255.0
IPADDR=192.168.0.68
GATEWAY=192.168.0.1
 
重启
/etc/init.d/network restart
 
########################
防火墙设置

1、重启后永久性生效

开启:chkconfig iptables on 

关闭:chkconfig iptables off 

2、即时生效,重启后失效:

开启:service iptables start 

关闭:service iptables stop

/etc/init.d/iptables status   会得到一系列信息,说明防火墙开着。

/etc/rc.d/init.d/iptables stop 关闭防火墙

/etc/init.d/iptables stop

linux 修改ip地址 和关闭防火墙设置