Konfigurowanie fikcyjnego interfejsu
Jeśli chcesz utworzyć interfejsy sieciowe, ale brakuje ci fizycznej karty sieciowej, aby to zrobić, możesz użyć fikcyjnego typu łącza. Możesz przeczytać więcej o nich tutaj: strona Wikipedii iproute2 .
Tworzenie eth10
Aby stworzyć ten interfejs, musisz najpierw upewnić się, że masz załadowany atrapa modułu jądra. Możesz to zrobić w następujący sposób:
$ sudo lsmod | grep dummy
$ sudo modprobe dummy
$ sudo lsmod | grep dummy
dummy 12960 0
Po załadowaniu sterownika możesz tworzyć dowolne fikcyjne interfejsy sieciowe, które Ci się podobają:
$ sudo ip link set name eth10 dev dummy0
I potwierdź to:
$ ip link show eth10
6: eth10: <BROADCAST,NOARP> mtu 1500 qdisc noop state DOWN mode DEFAULT group default
link/ether c6:ad:af:42:80:45 brd ff:ff:ff:ff:ff:ff
Zmiana MAC
Następnie możesz zmienić adres MAC, jeśli chcesz:
$ sudo ifconfig eth10 hw ether 00:22:22:ff:ff:ff
$ ip link show eth10
6: eth10: <BROADCAST,NOARP> mtu 1500 qdisc noop state DOWN mode DEFAULT group default
link/ether 00:22:22:ff:ff:ff brd ff:ff:ff:ff:ff:ff
Tworzenie aliasu
Następnie możesz utworzyć aliasy na etykiecie eth10.
$ sudo ip addr add 192.168.100.199/24 brd + dev eth10 label eth10:0
I potwierdź je w ten sposób:
$ ifconfig -a eth10
eth10: flags=130<BROADCAST,NOARP> mtu 1500
ether 00:22:22:ff:ff:ff txqueuelen 0 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
$ ifconfig -a eth10:0
eth10:0: flags=130<BROADCAST,NOARP> mtu 1500
inet 192.168.100.199 netmask 255.255.255.0 broadcast 192.168.100.255
ether 00:22:22:ff:ff:ff txqueuelen 0 (Ethernet)
Lub używając ip
:
$ ip a | grep -w inet
inet 127.0.0.1/8 scope host lo
inet 192.168.1.20/24 brd 192.168.1.255 scope global wlp3s0
inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0
inet 192.168.100.199/24 brd 192.168.100.255 scope global eth10:0
Usuwasz to wszystko?
Jeśli chcesz to wszystko zrelaksować, możesz uruchomić następujące polecenia:
$ sudo ip addr del 192.168.100.199/24 brd + dev eth10 label eth10:0
$ sudo ip link delete eth10 type dummy
$ sudo rmmod dummy
Bibliografia