How to check the IP address with Ubuntu
It's f.oh.S.S.On August 23 (US time), "How to Check IP Address in Ubuntu Linux [Quick Tip]" featured how to use a command to display the host's IP address in Ubuntu.The article assumes Ubuntu, but the commands used can also be used in other Linux distributions.
The main methods introduced are as follows.
コマンド | 内容 |
---|---|
ip addr show | IPv4とIPv6アドレスを表示 |
ip a | ip addr showと同じ |
hostname -I | IPv4アドレスを表示 |
curl ifconfig.me | サーバと通信する時に使われるパブリックIPアドレスを表示 |
The IFCONFIG command should not be used in recent Linux distributions, so it is better not to use it.
設定されたIPアドレスなどのネットワーク情報を表示するコマンドとしては、これまでifconfigが使われることが多かった。ifconfigコマンドはLinuxのみならずmacohSやFreeBSDなどほかのUNIX系オペレーティングシステムでも利用できる。ipコマンドは最近Linuxに導入されたコマンドで、Linux以外のオペレーティングシステムでは利用できない。