Adicione uma segunda placa de rede no Linux

2

Existem vários locais que sugerem a adição de algumas linhas a /etc/network/interfaces e a reinicialização do daemon de rede sudo /etc/init.d/networking restart . [ 1 ] [ 2 ]

No entanto, isso é uma espécie de dor para uma máquina virtual para a qual eu só conheço a configuração desejada do segundo nic em tempo de execução, e pode não querer que as alterações persistam. Existe alguma maneira de apenas temporariamente usar um segundo nic, sem ter que adicionar e excluir linhas do arquivo de configuração?

    
por Scott 16.04.2018 / 19:58

1 resposta

3

sim, é possível citando configuração eth0 do ubuntu

We will use eth0 in this example, your interface can be named differently, see Finding your network interface.

If you have disabled the either wicd or the network manager you probably don't have a network connection anymore. Connect via a regular UTP cable to your router, and assuming you have DHCP enabled do the following:

sudo ip link set dev eth0 down
sudo dhclient eth0

This will bring your eth0 up by using DHCP. Your network is now configured (for the time being).

If you don't have DHCP enabled configure your network by issueing the commands below, the gateway address is the IP address of your router. And your IP should be in the same range as the router is.

sudo ip addr add 192.168.1.14/24 dev eth0
sudo ip link set dev eth0 up
sudo ip route add default via 192.168.1.1

These commands configure your interface but these changes will not survive a reboot, since the information is not stored anyhwere.

    
por 16.04.2018 / 20:12