I want to see how many interfaces(ethernet cards) are
working using single command?

Answers were Sorted based on User's Feedback



I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / friend

mii-tool

Is This Answer Correct ?    21 Yes 2 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / shrikant

ifconfig
OR
ifconfig -a

Is This Answer Correct ?    15 Yes 0 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / rallapalli

#ifconfig -a

except loopback

Is This Answer Correct ?    4 Yes 0 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / viren

lspci -n | grep 200


class 200 is the address of ethernet adapter

Is This Answer Correct ?    2 Yes 0 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / alf55

The command:

ifconfig -a | (grep -E 'Link encap:|inet6 addr|inet addr:' |
grep -vE 'inet addr:|inet6 addr')

Would result with an output similar to:

eth0 Link encap:Ethernet HWaddr 00:90:f5:b7:6a:1c
lo Link encap:Local Loopback
sit0 Link encap:IPv6-in-IPv4
wlan0 Link encap:Ethernet HWaddr 00:24:d7:a7:16:c0

So the command:

ifconfig -a | (grep -E 'Link encap:|inet6 addr|inet addr:' |
grep -vE 'inet addr:|inet6 addr') | wc -l

would produce the count.

The problem here is that it would also count usages such as
"eth0:0".

To not count those devices use:

ifconfig -a | (grep -E 'Link encap:|inet6 addr|inet addr:' |
grep -vE 'inet addr:|inet6 addr:|:[0-9][0-9]*') |wc -l

Is This Answer Correct ?    1 Yes 0 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / sanil

mii-tool
ifconfig -a

Is This Answer Correct ?    1 Yes 1 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / venkat

lot of single commands:

ifconfig
mii-tool
arp
iftracf

Is This Answer Correct ?    0 Yes 1 No

I want to see how many interfaces(ethernet cards) are working using single command?..

Answer / vel

#ethtool

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Linux Commands Interview Questions

What make install does?

0 Answers  


what is a command to display top 10 users who are using Huge Space?

3 Answers   IBM, TNS,


What is Write Command?

3 Answers  


How do you rate yourself in unix(if 0 is novice and 10 is sys admin)?

2 Answers   HP,


Explain the free command.

0 Answers  


What is linux pwd (print working directory) command?

0 Answers  


Is python faster than bash?

0 Answers  


What is the command to calculate the size of a folder?

0 Answers  


what is first RHEL 5.x version support ext4 filesystem?

2 Answers  


how to run the boot loader in the linux.......

5 Answers  


Is a command a full sentence?

0 Answers  


How remove all files in a directory linux?

0 Answers  


Categories