[Xorp-cvs] XORP cvs commit: xorp/etc/templates xorp/mld6igmp xorp/pim xorp/rtrmgr xorp/xrl/interfaces xorp/xrl/targets

Pavlin Radoslavov pavlin@icir.org
Wed, 1 Jun 2005 00:37:03 GMT


CVSROOT:	/usr/local/share/doc/apache/cvs
Module name:	xorp
Changes by:	pavlin@xorpc.icir.org	2005-06-01 00:37:03 UTC

XORP CVS repository


Modified files:
	etc/templates igmp.tp mld.tp pimsm4.tp pimsm6.tp 
	mld6igmp      igmp_proto.cc mld6_proto.cc mld6igmp_config.cc 
	              mld6igmp_node.hh mld6igmp_vif.cc mld6igmp_vif.hh 
	              xrl_mld6igmp_node.cc xrl_mld6igmp_node.hh 
	              xrl_mld6igmp_shell_funcs.sh 
	pim           pim_config.cc pim_node.hh pim_vif.cc pim_vif.hh 
	              xrl_pim_node.cc xrl_pim_node.hh 
	              xrl_pim_shell_funcs.sh 
	rtrmgr        config.boot.sample 
	xrl/interfaces mld6igmp.xif mld6igmp_xif.cc mld6igmp_xif.hh 
	               pim.xif pim_xif.cc pim_xif.hh 
	xrl/targets   mld6igmp.xrls mld6igmp_base.cc mld6igmp_base.hh 
	              pim.xrls pim_base.cc pim_base.hh 

Log message:
	* Add new XRLs to get/set/reset the "IP Router Alert option check" flag
	  per vif (for both MLD/IGMP and PIM):
	  - get_vif_ip_router_alert_option_check
	  - set_vif_ip_router_alert_option_check
	  - reset_vif_ip_router_alert_option_check
	
	* If the "IP Router Alert option check" flag is enabled per vif,
	  then drop the IGMP/MLD or PIM packets that don't have that IP option.
	  [Note that this check does not apply for some protocol messages].
	  The default value is "false", i.e., don't check, because some
	  protocol implementations may not set that flag properly (e.g.,
	  the OpenBSD IGMP host implementation).
	
	* Add new XORP configuration option per interface/vif for MLD/IGMP and PIM:
	  "enable-ip-router-alert-option-check: bool" with default value
	  of "false".

Revision  Changes                                Path
1.12      +9 -1;  commitid: e013429d01907ea6;    xorp/etc/templates/igmp.tp
1.12      +9 -1;  commitid: e013429d01907ea6;    xorp/etc/templates/mld.tp
1.24      +9 -1;  commitid: e013429d01907ea6;    xorp/etc/templates/pimsm4.tp
1.24      +9 -1;  commitid: e013429d01907ea6;    xorp/etc/templates/pimsm6.tp
1.31      +39 -35;  commitid: e013429d01907ea6;  xorp/mld6igmp/igmp_proto.cc
1.34      +36 -32;  commitid: e013429d01907ea6;  xorp/mld6igmp/mld6_proto.cc
1.6       +91 -1;  commitid: e013429d01907ea6;   xorp/mld6igmp/mld6igmp_config.cc
1.23      +39 -1;  commitid: e013429d01907ea6;   xorp/mld6igmp/mld6igmp_node.hh
1.38      +2 -1;  commitid: e013429d01907ea6;    xorp/mld6igmp/mld6igmp_vif.cc
1.19      +15 -2;  commitid: e013429d01907ea6;   xorp/mld6igmp/mld6igmp_vif.hh
1.46      +54 -1;  commitid: e013429d01907ea6;   xorp/mld6igmp/xrl_mld6igmp_node.cc
1.32      +56 -7;  commitid: e013429d01907ea6;   xorp/mld6igmp/xrl_mld6igmp_node.hh
1.14      +44 -1;  commitid: e013429d01907ea6;   xorp/mld6igmp/xrl_mld6igmp_shell_funcs.sh
1.40      +76 -1;  commitid: e013429d01907ea6;   xorp/pim/pim_config.cc
1.56      +67 -2;  commitid: e013429d01907ea6;   xorp/pim/pim_node.hh
1.54      +44 -38;  commitid: e013429d01907ea6;  xorp/pim/pim_vif.cc
1.36      +13 -1;  commitid: e013429d01907ea6;   xorp/pim/pim_vif.hh
1.88      +52 -1;  commitid: e013429d01907ea6;   xorp/pim/xrl_pim_node.cc
1.62      +65 -7;  commitid: e013429d01907ea6;   xorp/pim/xrl_pim_node.hh
1.30      +44 -1;  commitid: e013429d01907ea6;   xorp/pim/xrl_pim_shell_funcs.sh
1.28      +5 -1;  commitid: e013429d01907ea6;    xorp/rtrmgr/config.boot.sample
1.6       +46 -10;  commitid: e013429d01907ea6;  xorp/xrl/interfaces/mld6igmp.xif
1.18      +107 -1;  commitid: e013429d01907ea6;  xorp/xrl/interfaces/mld6igmp_xif.cc
1.16      +96 -7;  commitid: e013429d01907ea6;   xorp/xrl/interfaces/mld6igmp_xif.hh
1.23      +52 -4;  commitid: e013429d01907ea6;   xorp/xrl/interfaces/pim.xif
1.35      +107 -1;  commitid: e013429d01907ea6;  xorp/xrl/interfaces/pim_xif.cc
1.33      +107 -8;  commitid: e013429d01907ea6;  xorp/xrl/interfaces/pim_xif.hh
1.20      +43 -5;  commitid: e013429d01907ea6;   xorp/xrl/targets/mld6igmp.xrls
1.25      +106 -1;  commitid: e013429d01907ea6;  xorp/xrl/targets/mld6igmp_base.cc
1.26      +70 -5;  commitid: e013429d01907ea6;   xorp/xrl/targets/mld6igmp_base.hh
1.48      +51 -4;  commitid: e013429d01907ea6;   xorp/xrl/targets/pim.xrls
1.51      +106 -1;  commitid: e013429d01907ea6;  xorp/xrl/targets/pim_base.cc
1.54      +81 -5;  commitid: e013429d01907ea6;   xorp/xrl/targets/pim_base.hh