linux系统字符界面如何修改IP和网关?

发布网友 发布时间:2022-04-23 20:06

我来回答

4个回答

热心网友 时间:2022-04-19 04:48

使用命令ifconfig 例如:ifconfig eth1 192.168.1.10 netmask 255.255.255.0//eth1为设备名但是这个命令重启之后就会失效 如果在重启之后使其有效的话就要修改:/etc/sysconfig/network-scripts/ifcfg-eth1 //eth1为设备名内容如下:
DEVICE=eth0 端口名称
BOOTPROTO=static //如果用DHCP此处应为dhcp
BROADCAST=192.168.0.255 //广播地址 此项可以用#注释掉
HWADDR=网卡MAC地址 // 此项可以用#注释掉
IPADDR=192.168.0.5 IP地址
NETMASK=255.255.255.0 子网掩码
NETWORK=192.168.0.0 网段 //此项可以用#注释掉
GATEWAY=192.168.0.1 网关
ONBOOT=yes 开机自动加载
TYPE=Ethernet 端口类型 // 此项可以用#注释掉
DNS服务器应该在/etc/resolv.conf 设置如下:nameserver DNSIP设置完以上之后你须要重启网络服务:service network restart //此命令为RED LINUX下适用也可使用:ifdown eth1 ifup eth1 重启这个端口

热心网友 时间:2022-04-19 06:06

Ubuntu里不是在

cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto em1
iface em1 inet static
address 15.16.170.253
netmask 255.255.255.0
network 15.16.170.0
broadcast 15.16.170.255
gateway 15.16.170.254

sudo /etc/init.d/networking restart

热心网友 时间:2022-04-19 07:40

图形界面进去了之后,应该是很明确的!上面有IP,掩码,GW,而且第一个命令还有DNS。

热心网友 时间:2022-04-19 09:32

1、输入netconfig2、如果不行,那就输入neat-tui会出来图形界面可以配置

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com