Updates docs for SR1 with final revision
[genesis.git] / fuel / prototypes / auto-deploy / examples / ipmi / conf / README.txt
1 Add this snippet into /etc/network/interfaces after making sure to
2 replace p1p1.20 with your actual outbound interface in order to
3 provide network access to the Fuel master for DNS and NTP.
4
5 iface vfuelnet inet static
6         bridge_ports em1
7         address 10.30.0.1
8         netmask 255.255.255.0
9         pre-down iptables -t nat -D POSTROUTING --out-interface p1p1.20 -j MASQUERADE  -m comment --comment "vfuelnet"
10         pre-down iptables -D FORWARD --in-interface vfuelnet --out-interface p1p1.20 -m comment --comment "vfuelnet"
11         post-up iptables -t nat -A POSTROUTING --out-interface p1p1.20 -j MASQUERADE  -m comment --comment "vfuelnet"
12         post-up iptables -A FORWARD --in-interface vfuelnet --out-interface p1p1.20 -m comment --comment "vfuelnet"