Es gibt hier noch weitere ähnliche Fragen, aber keine der Antworten hat mir geholfen.
Ich kann den Promiscuous-Modus für Virtualbox-Einstellungen mit meiner Vagrant-Konfiguration unter Ubuntu erfolgreich aktivieren mit
vb.customize ["modifyvm", :id, "--nicpromisc3", "allow-all"]
Ich kann sehen, dass die Einstellungen in Virtualbox erfolgreich geändert wurden. In Ubuntu scheint es jedoch nicht aktiviert zu sein, wenn ich es ausführe.
ip a
Ich bekomme
3: enp0s8: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 00:0d:13:2a:3a:23 brd ff:ff:ff:ff:ff:ff
inet 192.168.15.10/24 brd 192.168.92.255 scope global enp0s8
valid_lft forever preferred_lft forever
inet6 fe80::20c:29ff:fe1f:5c51/64 scope link
valid_lft forever preferred_lft forever
Ich verwende das Vagrant-Bild -
config.vm.box = "ubuntu/xenial64"
Der Host ist auf macOS 10.13.6
Antwort1
Die Lösung bestand darin, auch einige Konfigurationsdateien zu rc.local hinzuzufügen. Meine Lösung mit Ansible war
- name: insert/update block in /etc/rc.local
blockinfile:
path: /etc/rc.local
backup: yes
content: |
#promiscuous mode required for routing
/sbin/ifconfig {{ vpn_nic }} up
/sbin/ifconfig {{ vpn_nic }} promisc
when: configure_gateway|bool
tags:
- init
- name: execute and check with netstat
shell: |
/etc/rc.local
netstat -i
register: netstatout
become: true
tags:
- init
- debug:
msg: "{{ netstatout.stdout }}"