zoukankan      html  css  js  c++  java
  • 在Linux系统中修改IP地址

        在Linux系统中,通过编辑网络配置文件,设置系统IP地址,当然要在root权限下执行,具体步骤如下:

    1、切换路径到/etc/sysconfig/network-scripts

    [root@Compile network-scripts]# pwd
    /etc/sysconfig/network-scripts

    2、查看ifcfg-eth0文件属性,确保具有编辑权限

    [root@Compile network-scripts]# ls -l ifcfg-eth0
    -rw-r--r--. 1 root root 258 9月  24 18:05 ifcfg-eth0

    3、编辑文件ifcfg-eth0,添加如下信息

    ONBOOT=yes

    BOOTPROTO=static

    IPADDR=192.168.30.175

    NETMASK=255.255.255.0

    GATEWAY=192.168.30.1

    命令如下:[root@Compile network-scripts]# vi ifcfg-eth0

    DEVICE=eth0
    TYPE=Ethernet
    UUID=9d3f1462-d7ac-49fe-8b1b-d729866d3bc7
    ONBOOT=yes
    NM_CONTROLLED=yes
    BOOTPROTO=static
    HWADDR=00:23:AE:A8:D7:1E
    IPADDR=192.168.30.175
    NETMASK=255.255.255.0
    GATEWAY=192.168.30.1
    IPV4_FAILURE_FATAL=yes
    IPV6INIT=no
    NAME="System eth0"

    4、重启网络服务

    [root@Compile network-scripts]# /etc/init.d/network  restart
    正在关闭接口 eth0: 设备状态:3 (断开连接)
                                                               [确定]
    关闭环回接口:                                             [确定]
    弹出环回接口:                                             [确定]
    弹出界面 eth0: 活跃连接状态:激活的
    活跃连接路径:/org/freedesktop/NetworkManager/ActiveConnection/2
                                                               [确定]

    5、通过命令方式设置网络IP,可以立即生效

    [root@Compile network-scripts]# ifconfig eth0 192.168.30.175 netmask 255.255.255.0

    [root@Compile network-scripts]# route add default gateway 192.168.30.1

  • 相关阅读:
    poj 3070 矩阵快速乘
    将数字放大显示
    hdu 火车入队 stack
    linq to Entity 数据库除了有主键还有唯一索引,是不是不能更新
    整理:C#写ActiveX, 从代码到打包到签名到发布的示例
    Java—FileOperator
    第二章-递归与分治策略
    第四章-贪心算法
    第五章-回溯法
    Linux中C程序调试、makefile
  • 原文地址:https://www.cnblogs.com/keanuyaoo/p/3362276.html
Copyright © 2011-2022 走看看