From 0aac410719aa68e594c00d21dd916581988fc5de Mon Sep 17 00:00:00 2001 From: Divakar Date: Sat, 22 Aug 2015 08:21:27 +0530 Subject: [PATCH] Change MplsOudp destination port to IANA port Right now the destination port that Vrouter uses in MplsOudp packet is 51234 which is not by IANA. But Vrouter is accepting the packets in the reception path both old and new port numbers. With this change we will be sening the destination port also to be IANA assigned port. Change-Id: Idc6e1b3bf3f58fa15d0ad1184c60ea7e75865336 closes-bug: #1420905 --- include/vr_mpls.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/vr_mpls.h b/include/vr_mpls.h index 4f59240e9..fdae4a380 100644 --- a/include/vr_mpls.h +++ b/include/vr_mpls.h @@ -14,7 +14,7 @@ #define VR_MPLS_OVER_UDP_OLD_DST_PORT 51234 #define VR_MPLS_OVER_UDP_NEW_DST_PORT 6635 -#define VR_MPLS_OVER_UDP_DST_PORT VR_MPLS_OVER_UDP_OLD_DST_PORT +#define VR_MPLS_OVER_UDP_DST_PORT VR_MPLS_OVER_UDP_NEW_DST_PORT #define VR_MPLS_OVER_UDP_SRC_PORT 51000 #define VR_MUDP_PORT_RANGE_START 49152 #define VR_MUDP_PORT_RANGE_END 65535