ARM Linux系统修改动态IP为静态IP地址

# Wired or wireless interfaces                                                  
auto eth0                                                                       
#iface eth0 inet dhcp                                                           
#        pre-up /bin/grep -v -e "ip=[0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]\+" /proc/cm
                                                                          
iface eth0 inet static                                                    
        address 10.40.49.53                                               
        netmask 255.255.255.0                                                   
        network 10.40.49.1                                                      
        gateway 10.40.49.254
参考

很多人都不知道在ARM Linux系统下如何修改动态IP为静态IP地址,其实只要两个步骤就可以搞定。

首先,使用vi打开 /etc/network/interfaces 目录,命令如下:
  1. vi /etc/network/interfaces

其次,将 “# Wired or wireless interfaces”这一行下的网络这是进行修改

(1)将 “红框1” 这一行注释掉,修改后为:
  1. #iface eth0 inet dhcp
(2)添加 静态IP 配置,内容如下。

  1.          iface eth0 inet static
  2.          address 192.168.1.100
  3.          netmask 255.255.255.0
  4.          network 192.168.1.0
  5.          gateway 192.168.1.1
注意,其中auto eth0这一行保留,不能删除。

(3)保存interfaces文件,重启网络或开发系统就OK了
  1. /etc/init.d/networking restart

你可能感兴趣的:(ARM)