如何在ubuntu中获取活动接口

时间:2015-03-08 10:38:51

标签: ubuntu networking

我正在尝试仅提取机器上的活动接口,我有一个自动连接和断开连接的脚本,当我运行ifconfig

时,接口就像这样
tun1      Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00  
          inet addr:10.9.8.1  P-t-P:10.9.8.2  Mask:255.255.255.255
          UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  Metric:1
          RX packets:13 errors:0 dropped:0 overruns:0 frame:0
          TX packets:16 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:100 
          RX bytes:2262 (2.2 KiB)  TX bytes:1819 (1.7 KiB)

tun 5
tun 7 
...etc

我怎样才能只提取接口名称

1 个答案:

答案 0 :(得分:0)

ifconfig | grep "Link encap" | awk '{ print $1 '}