Merge pull request #11643 from ARShreenidhi/df_or_ntw_auto

tests: bgp default orignate behaviour on network commands
This commit is contained in:
Donatas Abraitis 2022-07-20 11:43:10 +03:00 committed by GitHub
commit b6754b74ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1550 additions and 0 deletions

View File

@ -0,0 +1,136 @@
{
"address_types": ["ipv4", "ipv6"],
"ipv4base": "192.168.0.0",
"ipv4mask": 3024,
"ipv6base": "fd00::",
"ipv6mask": 64,
"link_ip_start": {
"ipv4": "192.168.0.0",
"v4mask": 24,
"ipv6": "fd00::",
"v6mask": 64
},
"lo_prefix": {"ipv4": "1.0.", "v4mask": 32, "ipv6": "2001:db8:f::", "v6mask": 128},
"routers": {
"r0": {
"links": {
"lo": {"ipv4": "auto", "ipv6": "auto", "type": "loopback"},
"r1": {"ipv4": "auto", "ipv6": "auto"}
},
"bgp": {
"local_as": "100",
"address_family": {
"ipv4": {
"unicast": {"neighbor": {"r1": {"dest_link": {"r0": {}}}}}
},
"ipv6": {
"unicast": {"neighbor": {"r1": {"dest_link": {"r0": {}}}}}
}
}
}
},
"r1": {
"links": {
"lo": {"ipv4": "auto", "ipv6": "auto", "type": "loopback"},
"r0": {"ipv4": "auto", "ipv6": "auto"},
"r2-link1": {"ipv4": "auto", "ipv6": "auto"},
"r2-link2": {"ipv4": "auto", "ipv6": "auto"}
},
"bgp": {
"local_as": "200",
"address_family": {
"ipv4": {
"unicast": {
"neighbor": {
"r0": {"dest_link": {"r1": {}}},
"r2": {"dest_link": {"r1-link1": {}, "r1-link2": {}}}
}
}
},
"ipv6": {
"unicast": {
"neighbor": {
"r0": {"dest_link": {"r1": {}}},
"r2": {"dest_link": {"r1-link1": {}, "r1-link2": {}}}
}
}
}
}
}
},
"r2": {
"links": {
"lo": {"ipv4": "auto", "ipv6": "auto", "type": "loopback"},
"r1-link1": {"ipv4": "auto", "ipv6": "auto"},
"r1-link2": {"ipv4": "auto", "ipv6": "auto"},
"r3": {"ipv4": "auto", "ipv6": "auto"}
},
"bgp": {
"local_as": "300",
"address_family": {
"ipv4": {
"unicast": {
"neighbor": {
"r1": {"dest_link": {"r2-link1": {}, "r2-link2": {}}},
"r3": {"dest_link": {"r2": {}}}
}
}
},
"ipv6": {
"unicast": {
"neighbor": {
"r1": {"dest_link": {"r2-link1": {}, "r2-link2": {}}},
"r3": {"dest_link": {"r2": {}}}
}
}
}
}
}
},
"r3": {
"links": {
"lo": {"ipv4": "auto", "ipv6": "auto", "type": "loopback"},
"r2": {"ipv4": "auto", "ipv6": "auto"},
"r4": {"ipv4": "auto", "ipv6": "auto"}
},
"bgp": {
"local_as": "400",
"address_family": {
"ipv4": {
"unicast": {
"neighbor": {
"r2": {"dest_link": {"r3": {}}},
"r4": {"dest_link": {"r3": {}}}
}
}
},
"ipv6": {
"unicast": {
"neighbor": {
"r2": {"dest_link": {"r3": {}}},
"r4": {"dest_link": {"r3": {}}}
}
}
}
}
}
},
"r4": {
"links": {
"lo": {"ipv4": "auto", "ipv6": "auto", "type": "loopback"},
"r3": {"ipv4": "auto", "ipv6": "auto"}
},
"bgp": {
"local_as": "500",
"address_family": {
"ipv4": {
"unicast": {"neighbor": {"r3": {"dest_link": {"r4": {}}}}}
},
"ipv6": {
"unicast": {"neighbor": {"r3": {"dest_link": {"r4": {}}}}}
}
}
}
}
}
}

File diff suppressed because it is too large Load Diff