ubuntu的ip设置在哪里?谢谢
发布网友
发布时间:2022-04-23 01:03
我来回答
共3个回答
热心网友
时间:2023-09-26 22:28
1.图形界面下可以直接修改,就略去不谈了
2.终端下命令ifconfig;
例如要将本机eth0(单一网卡的话一般是这个)IP设置为192.168.0.2掩码为255.255.255.0
命令为sudo ifconfig eth0 192.168.0.2 netmask=255.255.255.0
然后执行sudo ifdown eth0
接着sudo ifup eth0来重启网络
3.直接修改配置文件,sudo vi /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 eth0
iface eth0 inet static
address 192.168.0.2
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
将auto eth0后面的内容按照上面格式改成你要的IP即可,上面显示的是配置为192.168.0.2的情况
热心网友
时间:2023-09-26 22:29
我理解LZ的意思
Ubuntu的管理里面有个网络
但是图形界面不好用,至少没有windows和fedora直接
所以我一般都是采取 garymb的方式
1. 用ifconfig 设置IP
用 route add 添加缺省路由做网关;
2. 直接修改 etc 下面的配置文件,这样每次启动的时候
自动加载(跟windows的注册表类似)
热心网友
时间:2023-09-26 22:29
http://wenda.tianya.cn/wenda/thread?tid=64cbed445944e39b