#!/usr/bin/perl
#
# Copyright (C) 1999,2000 Yokogawa Electric Corporation and
# YDC Corporation.
# All rights reserved.
#
# Redistribution and use of this software in source and binary
# forms, with or without modification, are permitted provided that
# the following conditions and disclaimer are agreed and accepted
# by the user:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with
# the distribution.
#
# 3. Neither the names of the copyrighters, the name of the project
# which is related to this software (hereinafter referred to as
# "project") nor the names of the contributors may be used to
# endorse or promote products derived from this software without
# specific prior written permission.
#
# 4. No merchantable use may be permitted without prior written
# notification to the copyrighters.
#
# 5. The copyrighters, the project and the contributors may prohibit
# the use of this software at any time.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHTERS, THE PROJECT AND
# CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING
# BUT NOT LIMITED THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHTERS, THE PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# $Id: routerRecvRs.seq,v 1.1.1.1 2000/10/31 22:39:35 sekiya Exp $
########################################################################
BEGIN { $V6evalTool::TestVersion = '$Name: $ '; }
use V6evalTool;
use nd;
use ra;
ndOptions(@ARGV);
# The following generate debugging messages.
$nd::debug=$ndOpt_v|$ndOpt_vv;
# You can specifies debug optons to a remote control program.
# If you want to know more detail, please see the following:
# - V6evalTool.pm: perldoc V6evalTool
# - V6evalRemote.pm: perldoc V6evalRemote
$nd::remote_debug="-o1" if $ndOpt_vv;
$IF=Link0;
$exit_rtn=$V6evalTool::exitPass;
$idx=0;
$wait_ra=2;
$wait_ras=$nd::MIN_DELAY_BETWEEN_RAS+1;
#
#
#
$type=$V6evalTool::NutDef{Type};
if($type eq host) {
vLogHTML("This test is for the router only
");
exit $V6evalTool::exitRouterOnly;
}
$type=$V6evalTool::NutDef{Type};
if($type ne router) {
vLogHTML(ndErrmsg("ERROR: $V6evalTool::NutDef{Type}: ".
"Unknown target type
"));
exit $V6evalTool::exitFail;
}
if(raIsMarkDefaultRA() == 0) {
vLogHTML(ndErrmsg("ERROR: Need RA configuration
"));
exit $V6evalTool::exitFail;
}
#
#
#
$idx_ptn=0;
$idx_msg=1;
#
@def_rs_unspec2allrouter=
(
'rs_unspec2allrouter',
'RS w/o SLL, src=unspecific',
);
#
@def_rs_tn2allrouter=
(
'rs_tn2allrouter',
'RS w/o SLL, src=link-local',
);
#
@def_rs_tn2allrouter_sll=
(
'rs_tn2allrouter_sll',
'RS w/ SLL, src=link-local',
);
#
@def_rs_tn2allrouter_invalid_hlimit=
(
'rs_tn2allrouter_invalid_hlimit',
'RS w/o SLL, hop limit!=255 (INVALID)',
);
#
@def_rs_tn2allrouter_invalid_chksum=
(
'rs_tn2allrouter_invalid_chksum',
'RS w/o SLL, invalid checksum (INVALID)',
);
#
@def_rs_tn2allrouter_invalid_icmpcode=
(
'rs_tn2allrouter_invalid_icmpcode',
'RS w/o SLL, icmp code!=0 (INVALID)',
);
#
@def_rs_unspec2allrouter_sll_invalid=
(
'rs_unspec2allrouter_sll_invalid',
'RS w/ SLL, src=unspecified (INVALID)',
);
#
#
#
@defs=
(
\@def_rs_unspec2allrouter,
\@def_rs_tn2allrouter,
\@def_rs_tn2allrouter_sll,
);
#
@invalid_defs=
(
\@def_rs_tn2allrouter_invalid_hlimit,
\@def_rs_tn2allrouter_invalid_chksum,
\@def_rs_tn2allrouter_invalid_icmpcode,
\@def_rs_unspec2allrouter_sll_invalid,
);
#
#
#
vCapture($IF);
#
#
#
$idx=0;
foreach(@defs) {
$ptn=@$_[$idx_ptn];
$msg=@$_[$idx_msg];
vLogHTML("
TN NUT ---------------------- State: NONCE (for TN)=end html =head1 JUDGMENT =begin html
==== valid/invalid RS ===>
<=== RA ====
Wait for MIN_DELAY_BETWEEN_RAS sec.
1. NUT must send a valid RA when received a valid RS.=end html =head1 TERMINATION N/A =head1 NOTE N/A =head1 REFERENCE =begin html
========================================+================= RS | Expected RA ========================================+================= RS w/o SLL, src=unspecific | sending RA ----------------------------------------+----------------- RS w/o SLL, src=link-local | sending RA ----------------------------------------+----------------- RS w/ SLL, src=link-local | sending RA ----------------------------------------+----------------- RS w/o SLL, hop *limit!=255 (INVALID) | NOT sending RA ----------------------------------------+----------------- RS w/o SLL, *invalid checksum (INVALID) | NOT sending RA ----------------------------------------+----------------- RS w/o SLL, *icmp code!=0( INVALID) | NOT sending RA ----------------------------------------+----------------- RS *w/ SLL, *src=unspecified (INVALID) | NOT sending RA ========================================+=================
2. NUT sends the following RA that was configured by the previous test.
3. The received RA may have - Source link-layer address option - MUT option - Prefix option
RFC2461=head1 SEE ALSO perldoc V6evalTool perldoc V6evalRemote =cut
4.3. Neighbor Solicitation Message Format IP Fields:
Source Address Either an address assigned to the interface from which this message is sent or (if Duplicate Address Detection is in progress [ADDRCONF]) the unspecified address.
Destination Address Either the solicited-node multicast address corresponding to the target address, or the target address.
Hop Limit 255
Authentication Header If a Security Association for the IP Authentication Header exists between the sender and the destination address, then the sender SHOULD include this header.
ICMP Fields:
Type 135
Code 0
Checksum The ICMP checksum. See [ICMPv6].
Reserved This field is unused. It MUST be initialized to zero by the sender and MUST be ignored by the receiver.
Target Address The IP address of the target of the solicitation. It MUST NOT be a multicast address.
Possible options:
Source link-layer address The link-layer address for the sender. MUST NOT be included when the source IP address is the unspecified address. Otherwise, on link layers that have addresses this option MUST be included in multicast solicitations and SHOULD be included in unicast solicitations.