码迷,mamicode.com
首页 > 系统相关 > 详细

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

时间:2014-11-13 15:58:13      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:style   ar   os   sp   文件   div   on   art   bs   

修改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地址 和关闭防火墙设置

标签:style   ar   os   sp   文件   div   on   art   bs   

原文地址:http://www.cnblogs.com/chenkuanxin/p/4094888.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!