我怎样才能知道哪些ip我有Linux vps服务器?

我昨天买了一台VPS服务器。 现在服务器公司的支持是不可行的。 我要设置DNS地址。 所以我知道他们给我的1个IP号码,我怎么知道我有多lessIP,他们是什么? 有没有命令为Ubuntu的呢? 或者其他方式?

ip addr作为根是要走的路。

/sbin/ifconfig -a

会导致类似的东西

 eth0 Link encap:Ethernet HWaddr 00:1C:C0:78:D2:74 inet addr:aaa.bbb.ccc.dddd Bcast:xxx.yyy.zzz.nnn Mask:255.255.240.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:423575721 errors:0 dropped:0 overruns:0 frame:0 TX packets:126628915 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:3433267581 (3.1 GiB) TX bytes:4221095056 (3.9 GiB) Interrupt:17 Base address:0x6000 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:9838921 errors:0 dropped:0 overruns:0 frame:0 TX packets:9838921 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:4205604044 (3.9 GiB) TX bytes:4205604044 (3.9 GiB) 

任何分配给lo的IP地址都是一个公共IP地址(确认通过尝试从另一台机器ping通)

/ sbin / ip addr作为非root用户;-)

 [kaman@host-10 ~]$ /sbin/ip a|grep -oP "inet (\d+\.){3}\d+" inet 127.0.0.1 inet 192.168.0.10 inet 192.168.54.2