diff options
| author | Eli Baum <ebaum@mitre.org> | 2021-10-05 09:06:49 -0400 | 
|---|---|---|
| committer | Eli Baum <ebaum@mitre.org> | 2021-10-07 09:14:59 -0400 | 
| commit | d70a31a3ef2b60d978b336d5cc9ee5e1ec079dfc (patch) | |
| tree | 2fdf320ce338a2078a2d9bac1453e59fcd04ef91 /pbrd/pbr_zebra.c | |
| parent | ac32b03f9805df2639d6a62ffd1bef76da15e6f0 (diff) | |
pbrd: add vlan actions to vty
Signed-off-by: Eli Baum <ebaum@mitre.org>
Diffstat (limited to 'pbrd/pbr_zebra.c')
| -rw-r--r-- | pbrd/pbr_zebra.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/pbrd/pbr_zebra.c b/pbrd/pbr_zebra.c index 28def509d5..47d82950e7 100644 --- a/pbrd/pbr_zebra.c +++ b/pbrd/pbr_zebra.c @@ -542,6 +542,12 @@ static void pbr_encode_pbr_map_sequence(struct stream *s,  	stream_putc(s, pbrms->dsfield);  	stream_putl(s, pbrms->mark); +	stream_putl(s, pbrms->action_queue_id); + +	stream_putw(s, pbrms->action_vlan_id); +	stream_putw(s, pbrms->action_vlan_flags); +	stream_putw(s, pbrms->action_pcp); +  	if (pbrms->vrf_unchanged || pbrms->vrf_lookup)  		pbr_encode_pbr_map_sequence_vrf(s, pbrms, ifp);  	else if (pbrms->nhgrp_name)  | 
