diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/integration/03_traffic.conf | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/conf/integration/03_traffic.conf b/conf/integration/03_traffic.conf index b59a2d09..7a890ad3 100644 --- a/conf/integration/03_traffic.conf +++ b/conf/integration/03_traffic.conf @@ -70,3 +70,26 @@ VXLAN_FRAME_l4 = {'srcport': 4789, 'protocolpad': '', 'protocolpadbytes': '', } + +GRE_FRAME_L2 = {'srcmac': '', + 'dstmac': '', + } + +GRE_FRAME_L3 = {'proto': 'gre', + 'packetsize': 64, + 'srcip': TRAFFICGEN_PORT1_IP, + 'dstip': '', + } + +GRE_FRAME_l4 = {'srcport': 0, + 'dstport': 0, + 'inner_srcmac': '', + 'inner_dstmac': '', + 'inner_srcip': '', + 'inner_dstip': '', + 'inner_proto': 'tcp', + 'inner_srcport': 3000, + 'inner_dstport': 3001, + 'protocolpad': '', + 'protocolpadbytes': '', + } |