diff options
author | Neale Ranns <nranns@cisco.com> | 2018-01-30 09:02:20 -0800 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2018-01-31 17:42:27 +0000 |
commit | 8269d3dbe70adaae60806d5d84e35f25d23193c5 (patch) | |
tree | 7e56cd4feed2fffcf8d6791ccc828cae5385d352 /src/vnet/dhcp | |
parent | f2a23cc8602525a325eaeaae6aca5e18882c33da (diff) |
Improved tracing for the IP[46] not-enabled case.
now we get
00:00:03:665501: pg-input
...
00:00:03:665681: ethernet-input
...
00:00:03:665691: ip6-input
UDP: 2001::1 -> ffef::1
tos 0x00, flow label 0x0, hop limit 64, payload length 108
UDP: 1234 -> 1234
length 108, checksum 0x7b25
00:00:03:665695: ip6-not-enabled
UDP: 2001::1 -> ffef::1
tos 0x00, flow label 0x0, hop limit 64, payload length 108
UDP: 1234 -> 1234
length 108, checksum 0x7b25
00:00:03:665706: error-drop
ethernet-input: no error
Same goes for IPv4
Change-Id: Ia360df39b43281d3a0aa1b686f04b73cfa37c546
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/dhcp')
-rw-r--r-- | src/vnet/dhcp/dhcp_client_detect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/dhcp/dhcp_client_detect.c b/src/vnet/dhcp/dhcp_client_detect.c index 1b916cdd356..f9ba4fee4d2 100644 --- a/src/vnet/dhcp/dhcp_client_detect.c +++ b/src/vnet/dhcp/dhcp_client_detect.c @@ -319,7 +319,7 @@ VNET_FEATURE_INIT (ip4_dvr_reinject_feat_node, static) = { .arc_name = "ip4-unicast", .node_name = "ip4-dhcp-client-detect", - .runs_before = VNET_FEATURES ("ip4-drop"), + .runs_before = VNET_FEATURES ("ip4-not-enabled"), }; /* *INDENT-ON* */ |