ubuntu ifconfig没有ip
$ ifconfig -a
ens33: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether 00:**:**:**:**:** txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 1876 bytes 114200 (114.2 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1876 bytes 114200 (114.2 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
问题
Looks to me like the interface is disabled:
$ ifconfig -a
ens33: flags=4098<BROADCAST,MULTICAST> mtu 1500
ether 00:**:**:**:**:** txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 1876 bytes 114200 (114.2 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1876 bytes 114200 (114.2 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
But ifup doesn't seem to know ens33 (or eth0):
$ ifup ens33
Unknown interface ens33
$ ifup eth0
Unknown interface eth0
解决方案
Add the following line to /etc/network/interfaces:
iface ens33 inet dhcp
Switch it on (enable it):
sudo ifup ens33
Good to go:
ping google.com

相关推荐
-
基于Java的ORM框架对MySQL的性能影响分析2025-04-22 02:46:48
-
PHP读取文件内容的五种方式2025-04-22 02:26:20
-
php如何获取get参数,点滴经验分享2025-04-22 02:06:09
-
什么是PHP?培训都学什么?2025-04-22 02:04:15
-
PHP数据类型与常量2025-04-22 01:13:40