2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-04 07:55:18 +00:00

[#1043] Post rebase updates

This commit is contained in:
Francis Dupont
2020-07-07 18:38:44 +02:00
parent 52a259cd1e
commit a1f62b04aa
2 changed files with 8 additions and 5 deletions

View File

@@ -104,21 +104,21 @@ IfaceMgrTestConfig::createIface(const std::string &name, const int ifindex) {
void void
IfaceMgrTestConfig::createIfaces() { IfaceMgrTestConfig::createIfaces() {
// local loopback // local loopback
addIface("lo", 0); addIface("lo", LO_INDEX);
addAddress("lo", IOAddress("127.0.0.1")); addAddress("lo", IOAddress("127.0.0.1"));
addAddress("lo", IOAddress("::1")); addAddress("lo", IOAddress("::1"));
// eth0 // eth0
addIface("eth0", 1); addIface("eth0", ETH0_INDEX);
addAddress("eth0", IOAddress("10.0.0.1")); addAddress("eth0", IOAddress("10.0.0.1"));
addAddress("eth0", IOAddress("fe80::3a60:77ff:fed5:cdef")); addAddress("eth0", IOAddress("fe80::3a60:77ff:fed5:cdef"));
addAddress("eth0", IOAddress("2001:db8:1::1")); addAddress("eth0", IOAddress("2001:db8:1::1"));
// eth1 // eth1
addIface("eth1", 2); addIface("eth1", ETH1_INDEX);
addAddress("eth1", IOAddress("192.0.2.3")); addAddress("eth1", IOAddress("192.0.2.3"));
addAddress("eth1", IOAddress("192.0.2.5")); addAddress("eth1", IOAddress("192.0.2.5"));
addAddress("eth1", IOAddress("fe80::3a60:77ff:fed5:abcd")); addAddress("eth1", IOAddress("fe80::3a60:77ff:fed5:abcd"));
// eth1961 // eth1961
addIface("eth1961", 3); addIface("eth1961", ETH1961_INDEX);
addAddress("eth1961", IOAddress("198.51.100.1")); addAddress("eth1961", IOAddress("198.51.100.1"));
addAddress("eth1961", IOAddress("fe80::3a60:77ff:fed5:9876")); addAddress("eth1961", IOAddress("fe80::3a60:77ff:fed5:9876"));

View File

@@ -24,6 +24,9 @@ const uint32_t ETH0_INDEX = 1;
/// @brief Index of the eth1 fake interface. /// @brief Index of the eth1 fake interface.
const uint32_t ETH1_INDEX = 2; const uint32_t ETH1_INDEX = 2;
/// @brief Index of the eth1961 fake interface.
const uint32_t ETH1961_INDEX = 1962;
//@} //@}
/// ///
@@ -130,7 +133,7 @@ struct FlagInactive6 {
/// - eth1 #2 /// - eth1 #2
/// - 192.0.2.3 /// - 192.0.2.3
/// - fe80::3a60:77ff:fed5:abcd /// - fe80::3a60:77ff:fed5:abcd
/// - eth1961 /// - eth1961 #1962
/// - 198.51.100.1 /// - 198.51.100.1
/// - fe80::3a60:77ff:fed5:9876 /// - fe80::3a60:77ff:fed5:9876
/// ///