Remove unused tables

This commit is contained in:
Nico Schottelius 2019-03-30 17:12:34 +01:00
commit 33117f0ca8
2 changed files with 61 additions and 61 deletions

View file

@ -312,68 +312,35 @@ Echo or Echo Reply Message
/********************** debugging / general support ***********************************/
table port2mcast {
key = {
standard_metadata.ingress_port : exact;
}
actions = {
multicast_pkg;
controller_debug;
NoAction;
}
size = NDP_TABLE_SIZE;
default_action = NoAction;
}
/* Handle multicast registration of NDP */
table addr2mcast {
key = {
hdr.ipv6.dst_addr: exact;
}
actions = {
multicast_pkg;
controller_debug;
NoAction;
}
size = NDP_TABLE_SIZE;
default_action = NoAction;
}
/********************** NDP support for OTHERS (unused ATM) ***********************************/
table ndp {
key = {
hdr.ipv6.dst_addr: lpm;
standard_metadata.ingress_port : exact;
}
actions = {
multicast_pkg;
controller_debug;
NoAction;
}
size = NDP_TABLE_SIZE;
default_action = NoAction;
}
// table port2mcast {
// key = {
// standard_metadata.ingress_port : exact;
// }
// actions = {
// multicast_pkg;
// controller_debug;
// NoAction;
// }
// size = NDP_TABLE_SIZE;
// default_action = NoAction;
// }
// /* Handle multicast registration of NDP */
// table addr2mcast {
// key = {
// hdr.ipv6.dst_addr: exact;
// }
// actions = {
// multicast_pkg;
// controller_debug;
// NoAction;
// }
// size = NDP_TABLE_SIZE;
// default_action = NoAction;
// }
/********************** ROUTING (egress definiton) TABLES ***********************************/
table v6_addresses {
key = {
hdr.ipv6.dst_addr: exact;
}
actions = {
controller_debug;
controller_reply;
icmp6_echo_reply;
NoAction;
}
size = ADDRESS_TABLE_SIZE;
default_action = NoAction;
}
table v6_networks {
key = {
hdr.ipv6.dst_addr: lpm;