Ich versuche, eine virtuelle IP für einzurichten ucarp
. Aber nach der Konfiguration passiert etwas Seltsames, ifup
ifdown
wenn ich versuche, die Konfigurationen anzuzeigen. Ich ändere /etc/network/interfaces
wie
# 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
Unten sehen Sie die Ausgabe der Terminalvorgänge danach
$ 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)
Ich versuche, das abzubauen enp0s3
, damit es enp0s3:ucarp
aufgehoben werden kann, aber es gibt eineÜberraschung#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)
Okay, jetzt, da enp0s3
ich nicht versuche, das anzusprechen, was ich vorbringen möchte enp0s3:ucarp
. Aber hier kommtÜberraschung#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)
Verstehe es nicht; kann es nicht konfigurieren ucarp
; bitte jemanden, der mir hilft, damit meine innere Ruhe zu finden!!
- Wird
ifconfig
die aktive Netzwerkkonfiguration/alle Netzwerkkonfigurationen unabhängig von oben/unten angezeigt? - Wie kann das Erstellen einer virtuellen Adresse dazu führen, dass auch die primäre Schnittstelle aktiv ist?
Antwort1
/run/network/ifstate
Aber egal, ein Update auf Ubuntu 15.10 scheint das Problem gelöst zu haben. Außerdem habe ich gelernt, jede Operation auch gegenzuprüfen .