ovz template - no venet ootb
Bug #937259 reported by
Jeremy Davis
This bug affects 2 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
TurnKey Linux |
Fix Released
|
Medium
|
Jeremy Davis | ||
11.x |
Fix Committed
|
Undecided
|
Unassigned | ||
12.x |
Fix Released
|
Medium
|
Jeremy Davis |
Bug Description
Dominick reports that when launching OVZ templates from the commandline the networking doesn't default to venet.
See here: http://
Changed in turnkeylinux: | |
status: | New → Confirmed |
Changed in turnkeylinux: | |
assignee: | nobody → JedMeister (jedmeister) |
importance: | Undecided → Medium |
To post a comment you must log in.
Here is the difference between the initial file and the modified one.
/etc/network/ interfaces when the container is created ------- ------- ------- ------- ------- ------- -------
#------
# UNCONFIGURED INTERFACES
# remove the above line if you edit this file
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
auto eth1 ------- ------- ------- ------- ------- ------- -------
iface eth1 inet dhcp
#------
/etc/network/ interfaces when it is manually modified to enable the networking connectivity ------- ------- ------- ------- ------- ------- -------
#------
# Auto generated lo interface
auto lo
iface lo inet loopback
# Auto generated venet0 interface
auto venet0
iface venet0 inet manual
up ifconfig venet0 up
up ifconfig venet0 127.0.0.2
up route add default dev venet0
down route del default dev venet0
down ifconfig venet0 down
auto venet0:0 ------- ------- ------- ------- ------- ------- -------
iface venet0:0 inet static
address <your_ip_address>
netmask 255.255.255.255
#------
Regards.