Fix CI ipv6 NIC config default route

The default route for ipv6 external network should not
use ipv4 '0.0.0.0/0' as next_hop. Update to use '::/0'
which is the ipv6 equivalent.

Closes-Bug: #1822951
Change-Id: I1628b4045b55f77cee46952c555c15f2c0a041ee
This commit is contained in:
Harald Jensås 2019-04-03 09:35:49 +02:00
parent 3d01ef2307
commit 066fd3a36c
2 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ resources:
dns_servers: {get_param: DnsServers}
use_dhcp: false
routes:
- ip_netmask: 0.0.0.0/0
- ip_netmask: ::/0
next_hop: {get_param: ExternalInterfaceDefaultRoute}
members:
- type: interface

View File

@ -194,7 +194,7 @@ resources:
- ip_netmask: {get_param: ExternalIpSubnet}
routes:
- default: true
ip_netmask: 0.0.0.0/0
ip_netmask: ::/0
next_hop: {get_param: ExternalInterfaceDefaultRoute}
members:
- type: interface