Estoy intentando configurar una IP virtual para ucarp
. Pero después de la configuración sucede algo extraño ifup
ifdown
al intentar ver las configuraciones. yo cambio /etc/network/interfaces
como
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
# The primary network interface
auto enp0s3
iface enp0s3 inet static
address 10.1.178.153
netmask 255.255.255.0
gateway 10.1.178.1
dns-nameservers 10.1.171.200
#######################
# ucarp configuration
#######################
# vid : The ID of the virtual server [1-255]
ucarp-vid 1
# vip : The virtual address
ucarp-vip 10.1.178.150
# password : A password used to encrypt Carp communications
ucarp-password secret
# advskew : Advertisement skew [1-255]
ucarp-advskew 100
# advbase : Interval in seconds that advertisements will occur
ucarp-advbase 1
# master : determine if this server is the master
# The carp network interface, on top of enp0s3
iface enp0s3:ucarp inet static
address 10.1.178.150
netmask 255.255.255.0
gateway 10.1.178.1
dns-nameservers 10.1.171.200
A continuación se muestra el resultado de los procedimientos terminales posteriores a eso.
$ sudo service networking restart
$ ifconfig
enp0s3 Link encap:Ethernet HWaddr 08:00:27:c6:9b:54
inet addr:10.1.178.153 Bcast:10.1.178.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fec6:9b54/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2826136 errors:0 dropped:0 overruns:0 frame:0
TX packets:1271544 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:320630219 (320.6 MB) TX bytes:94783376 (94.7 MB)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:37307 errors:0 dropped:0 overruns:0 frame:0
TX packets:37307 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:3039725 (3.0 MB) TX bytes:3039725 (3.0 MB)
Intento derribarlo enp0s3
para enp0s3:ucarp
poder levantarlo, pero hay unsorpresa#1
$ sudo ifdown enp0s3
RTNETLINK answers: No such process
$ ifconfig
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:37358 errors:0 dropped:0 overruns:0 frame:0
TX packets:37358 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:3042933 (3.0 MB) TX bytes:3042933 (3.0 MB)
Bien, ahora eso enp0s3
no aparece, trato de mencionarlo enp0s3:ucarp
. pero aquí vienesorpresa#2
$ sudo ifup enp0s3:ucarp
RTNETLINK answers: File exists
run-parts: /etc/network/if-up.d/avahi-autoipd exited with return code 2
Failed to bring up enp0s3:ucarp.
$ ifconfig
enp0s3 Link encap:Ethernet HWaddr 08:00:27:c6:9b:54
inet6 addr: fe80::a00:27ff:fec6:9b54/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2826298 errors:0 dropped:0 overruns:0 frame:0
TX packets:1271688 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:320646091 (320.6 MB) TX bytes:94802033 (94.8 MB)
enp0s3:ucarp Link encap:Ethernet HWaddr 08:00:27:c6:9b:54
inet addr:10.1.178.150 Bcast:10.1.178.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:37376 errors:0 dropped:0 overruns:0 frame:0
TX packets:37376 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:3044101 (3.0 MB) TX bytes:3044101 (3.0 MB)
No puedo entender; no se puede configurar ucarp
; ¡¡Pide a alguien que me ayude a conseguir algo de paz interior con esto!!
- ¿
ifconfig
Muestra la configuración de red activa/toda la configuración de red independientemente de si está arriba o abajo? - ¿Cómo es que crear una dirección virtual da como resultado que la interfaz principal también esté activa?
Respuesta1
No importa, una actualización a Ubuntu 15.10 parece haber resuelto el problema. Además, /run/network/ifstate
también aprendí a realizar una verificación cruzada de cada operación .