
The Hardware address provides you with your current connection’s (LAN or Wifi) mac address.



Click on the arrow next to your current connection (Wired or Wifi connected to). If the computer has no interface, then it will return an String containing null, otherwise will return a String containing what you asked for (the ip address or the mac).So, it will always be helpful to know how to find out mac address in Ubuntu. If you want to put a little more effort in, and parse more data out, I recommend using the -online argument to the ip command, which will let you treat every line as a new device: $ ip -o linkġ: lo: mtu 16436 qdisc noqueue \ link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00Ģ: eth0: mtu 1500 qdisc pfifo_fast qlen 1000\ link/ether 00:0c:29:30:21:48 brd ff:ff:ff:ff:ff:ffģ: eth1: mtu 1500 qdisc pfifo_fast qlen 1000\ link/ether 00:0c:29:30:21:52 brd ff:ff:ff:ff:ff:ffĤ: tun0: mtu 1500 qdisc pfifo_fast qlen 100\ link/ĥ: sit0: mtu 1480 qdisc noop \ link/sit 0.0.0.0 brd 0.0.0.You may need the MAC address for various functions at some point in your life. If the MAC address you are looking for is of one of your own network cards, then codeip a /codewill give you that information, e.g: code2: eno1. You can trivially get the mac address from this output with awk: $ ip link show eth0 | awk '/ether/ ' I like using /sbin/ip for these kind of tasks, because it is far easier to parse: $ ip link show eth0Ģ: eth0: mtu 1500 qdisc pfifo_fast qlen 1000
