Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
vms:webdev:start [2014/10/30 14:16]
admin [Setup Network Adapters]
vms:webdev:start [2014/10/30 14:21]
admin [Setup Network Adapters]
Line 69: Line 69:
 </​code>​ </​code>​
  
 +We only still need to restart the secondary interface to activate the newly set fixed IP address, then check that is correctly set:
 +
 +<​code>​
 +> ifdown eth1 && ifup eth1
 +ifdown: interface eth1 not configured
 +
 +> ip addr show
 +1: lo: <​LOOPBACK,​UP,​LOWER_UP>​ mtu 16436 qdisc noqueue state UNKNOWN ​
 +    link/​loopback 00:​00:​00:​00:​00:​00 brd 00:​00:​00:​00:​00:​00
 +    inet 127.0.0.1/8 scope host lo
 +    inet6 ::1/128 scope host 
 +       ​valid_lft forever preferred_lft forever
 +2: eth0: <​BROADCAST,​MULTICAST,​UP,​LOWER_UP>​ mtu 1500 qdisc pfifo_fast state UP qlen 1000
 +    link/ether 08:​00:​27:​55:​21:​b7 brd ff:​ff:​ff:​ff:​ff:​ff
 +    inet 10.0.7.61/​24 brd 10.0.7.255 scope global eth0
 +    inet6 fe80::​a00:​27ff:​fe55:​21b7/​64 scope link 
 +       ​valid_lft forever preferred_lft forever
 +3: eth1: <​BROADCAST,​MULTICAST,​UP,​LOWER_UP>​ mtu 1500 qdisc pfifo_fast state UP qlen 1000
 +    link/ether 08:​00:​27:​6e:​8b:​7d brd ff:​ff:​ff:​ff:​ff:​ff
 +    inet 172.20.20.2/​24 brd 172.20.20.255 scope global eth1
 +    inet6 fe80::​a00:​27ff:​fe6e:​8b7d/​64 scope link 
 +       ​valid_lft forever preferred_lft forever
 +</​code>​
 +
 +The last block (3: eth1:) indicates that our secondary interface is well set with the targeted fixed IP address 172.20.20.2
 +
 +We're ready to move on...
 ----- -----
 It is now time to [[apache|install the HTTP Server (Apache2)]]. It is now time to [[apache|install the HTTP Server (Apache2)]].