The system is LinuxMint 17.
The network can be made to work OK, but it fails to be there on start-up.
I have already learned to remove the crazy re-spawning "Network Manager" that repeatedly tries to connect to anything it finds.
I have already found /etc/network/interfaces.txt.
I have put there exactly what I need.
Code:
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
iface eth1 inet static
address 192.168.0.<my_chosen_number_here>
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
dns-nameservers 208.67.222.222
# auto eth1
That last "auto eth1" that I disabled by making it into a comment is always automatically written into this file on start-up, but is apparently trumped by the following command, delivered from a root terminal.
The network is then started up as needed, and it works just fine!
As it happens, there are two network ports, and eth0 is the one without the cable.
The questions..
1) Where is the proper place to put the "ifup eth1" command so that the network will be started correctly when we switch on?
2) Will there be a never-ending series of "auto eth1" repeatedly added to /etc/network/interfaces? If so, how do we prevent it?
My thanks if you can help.