Shell中擷取當前IP地址

來源:互聯網
上載者:User

參考地址:

ifconfig返回的資訊中包括IP地址,但要在Shell中擷取當前IP地址,則要麻煩一些

擷取方法

由於不同系統中ifconfig返回資訊的格式有一定差別,故分開討論:[1]

Linux:

LC_ALL=C ifconfig  | grep 'inet addr:'| grep -v '127.0.0.1' |cut -d: -f2 | awk '{ print $1}'

LC_ALL=C 英文輸出
ifconfig 輸出ip相關資訊
# LC_ALL=C ifconfigeth0      Link encap:Ethernet  HWaddr C2:AC:C3:E7:4A:33            inet addr:192.168.1.247  Bcast:0.0.0.0  Mask:255.255.255.0          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1          RX packets:84080 errors:0 dropped:80 overruns:0 frame:0          TX packets:3595264 errors:0 dropped:0 overruns:0 carrier:0          collisions:0 txqueuelen:1000           RX bytes:14627750 (13.9 MiB)  TX bytes:417627051 (398.2 MiB)          Interrupt:27 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:127 errors:0 dropped:0 overruns:0 frame:0          TX packets:127 errors:0 dropped:0 overruns:0 carrier:0          collisions:0 txqueuelen:0           RX bytes:18079 (17.6 KiB)  TX bytes:18079 (17.6 KiB)

 

grep 'inet addr:'  截取包含ip的那兩行
# LC_ALL=C ifconfig|grep "inet addr:"          inet addr:192.168.1.247  Bcast:0.0.0.0  Mask:255.255.255.0          inet addr:127.0.0.1  Mask:255.0.0.0

grep -v '127.0.0.1'   去掉本地指向的那行
# LC_ALL=C ifconfig|grep "inet addr:"|grep -v "127.0.0.1"          inet addr:192.168.1.247  Bcast:0.0.0.0  Mask:255.255.255.0 
cut -d: -f2    -d: 以:分割字串  -f2:取第二組資料
# LC_ALL=C ifconfig|grep "inet addr:"|grep -v "127.0.0.1"|cut -d: -f2192.168.1.247  Bcast
awk '{ print $1}'  $1 表示預設以空格分割的第一組 同理 $@表示第二組
# LC_ALL=C ifconfig|grep "inet addr:"|grep -v "127.0.0.1"|cut -d: -f2|awk '{print $1}'192.168.1.247# LC_ALL=C ifconfig|grep "inet addr:"|grep -v "127.0.0.1"|cut -d: -f2|awk '{print $2}'Bcast

 

 




FreeBSD/OpenBSD:

LC_ALL=C ifconfig  | grep -E 'inet.[0-9]' | grep -v '127.0.0.1' |awk '{ print $2}'

Solaris:

LC_ALL=C ifconfig -a | grep inet | grep -v '127.0.0.1' |awk '{ print $2}'

三段代碼的原理類似,都是先擷取含有IP的行,再去掉含有127.0.0.1的行。最後擷取IP所在的列

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.