Sounds about right, try to install that, too and see what’s coming next.
Check your network.json file in /etc/crowbar/, to me it sounds like this could be the reason why your connection is lost after running crowbar script. I don’t know if it helps, but here’s my output of my network.json:
{
"attributes": {
"network": {
"start_up_delay": 30,
"enable_tx_offloading": false,
"enable_rx_offloading": false,
"teaming": {
"mode": 4
},
"mode": "team",
"interface_map": [
{
"pattern": "X9DRT",
"bus_order": [
"0000:00/0000:00:01.1/0000:02:00.0",
"0000:00/0000:00:01.1/0000:02:00.1"
]
}
],
"conduit_map": [
{
"pattern": "team/2/.*",
"conduit_list": {
"intf2": {
"if_list": [
"+1g1",
"+1g2"
]
},
"intf1": {
"if_list": [
"+1g1",
"+1g2"
]
},
"intf0": {
"if_list": [
"+1g1",
"+1g2"
]
}
}
},
{
"pattern": "team/1/.*",
"conduit_list": {
"intf2": {
"if_list": [
"?1g1"
],
"team_mode": 0
},
"intf1": {
"if_list": [
"?1g1"
]
},
"intf0": {
"if_list": [
"?1g1"
]
}
}
},
{
"pattern": "team/.*/.*",
"conduit_list": {
"intf2": {
"if_list": [
"1g1",
"1g2"
]
},
"intf1": {
"if_list": [
"1g1",
"1g2"
]
},
"intf0": {
"if_list": [
"1g1",
"1g2"
]
}
}
}
],
"networks": {
"nova_fixed": {
"add_bridge": false,
[...]
But I didn’t modify that file myself, it was a colleague who knows networking way better than me. I left out the part with the networks (fixed, floating, etc.), I believe you can use the defaults here.
For reference, my admin server is also a VM (xen), but they only have one interface (eth0):
[CODE]root@admin1:~ # ip link list
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN mode DEFAULT group default qlen 1000
link/ether 00:16:3e:00:20:00 brd ff:ff:ff:ff:ff:ff
root@admin1:~ # ip address show eth0
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN group default qlen 1000
link/ether 00:16:3e:00:20:00 brd ff:ff:ff:ff:ff:ff
inet 192.168.124.129/24 brd 192.168.124.255 scope global eth0
valid_lft forever preferred_lft forever
inet6 fe80::216:3eff:fe00:2000/64 scope link
valid_lft forever preferred_lft forever
[/CODE]
Hope this helps!