0

I'm uing Raspberry Pi3 but I could not see ethp when I input ifconfig. I can only see enxb827eb844b0c : xxx lo: xxx

guyd
  • 578
  • 3
  • 13
  • 28
Daniel Hwang
  • 11
  • 1
  • 1
  • 3

2 Answers2

1

This is NORMAL for Stretch.

You do not need to do anything, the Pi should work as normal.

If you want to understand WHY and for other options see How do I set up networking/WiFi/Static IP

PS There is no need to be coy about posting the full output from ifconfig, which is necessary if you actually need help with troubleshooting.

Milliways
  • 59,890
  • 31
  • 101
  • 209
1

The string "enxb827eb844b0c" consists of your Ethernet card MAC address. you can change its name to "eth0" as I do after installation ( using a script ).

Using command line, locate eth alias in file

/lib/udev/rules.d/73-usb-net-by-mac.rules:

grep -o 'NAME=".*' /lib/udev/rules.d/73-usb-net-by-mac.rules | grep -o'".' 

Use any text editor, nano or gedit to change its name.

MatsK
  • 2,791
  • 3
  • 16
  • 20
guyd
  • 578
  • 3
  • 13
  • 28