#!/usr/bin/perl
#
# $Copyright$
#
# $Id: ncStateByNs4Incomplete.seq,v 1.1.1.1 2000/10/31 22:39:01 sekiya Exp $
########################################################################
BEGIN { $V6evalTool::TestVersion = '$Name: $ '; }
use V6evalTool;
use nd;
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;
#
#
#
$type=$V6evalTool::NutDef{Type};
if($type ne host && $type ne router) {
vLogHTML(ndErrmsg("ERROR: $V6evalTool::NutDef{Type}: ".
"Unknown target type
"));
exit $V6evalTool::exitFail;
}
#
# sub test definition:
# - sending pattern,
# - SLLA vs cached LLA
# - expected state
# - message
#
$idx_ptn=0;
$idx_lla=1;
$idx_exp=2;
$idx_explla=3;
$idx_msg=4;
$idx_inc_ip=5;
$idx_prb_ip=6;
$idx_rpy_ip=7;
$idx_ign_ip=8;
$idx_non_n=9;
$idx_rpy_n=10;
$idx_ign_n=11;
$idx_stl_sr=12;
$idx_ign_sr=13;
@null=();
#
@def_unicast_ns_tn2nut
=(
unicast_ns_tn2nut,
same,
'(INCOMPLETE|NONCE)',
unchanged,
'unicast NS w/o SLL',
\@null, \@null, \@null, \@null,
\@null, \@null, \@null,
\@null, \@null
);
#
@reply_unicast_ns_tn2nut_sll=
(unicast_na_nut2tn_rSo, unicast_na_nut2tn_rSO_tll) if $type eq host;
@reply_unicast_ns_tn2nut_sll=
(unicast_na_nut2tn_RSo, unicast_na_nut2tn_RSO_tll) if $type eq router;
@ignore_unicast_ns_tn2nut_sll=
(nd_echo_reply);
@def_unicast_ns_tn2nut_sll =
(
unicast_ns_tn2nut_sll,
same,
STALE,
unchanged,
'unicast NS w/ SLL',
\@null, \@null, \@reply_unicast_ns_tn2nut_sll, \@ignore_unicast_ns_tn2nut_sll,
\@null, \@null, \@null,
\@null, \@null
);
#
@reply_multicast_ns_tn2nut_sll=
(unicast_na_nut2tn_rSo, unicast_na_nut2tn_rSO_tll) if $type eq host;
@reply_multicast_ns_tn2nut_sll=
(unicast_na_nut2tn_RSo, unicast_na_nut2tn_RSO_tll) if $type eq router;
@ignore_multicast_ns_tn2nut_sll=
(nd_echo_reply);
@def_multicast_ns_tn2nut_sll =
(
multicast_ns_tn2nut_sll,
same,
STALE,
unchanged,
'multicast NS w/ SLL',
\@null, \@null, \@reply_multicast_ns_tn2nut_sll, \@ignore_multicast_ns_tn2nut_sll,
\@null, \@null, \@null,
\@null, \@null
);
#
@defs=
(
\@def_unicast_ns_tn2nut,
\@def_unicast_ns_tn2nut_sll,
\@def_multicast_ns_tn2nut_sll,
);
#
#
#
vCapture($IF);
#
#
#
$idx=0;
foreach(@defs) {
$exp=@$_[$idx_exp];
$explla=@$_[$idx_explla];
$msg=@$_[$idx_msg];
vLogHTML("
TN NUT ----------------------=end html =head1 JUDGMENT =begin html
State: INCOMPLETE (for TN)
==== NS ===> src=TN's link-local dst=NUT's link-local/solicited-node[NUT's link-local] w/o or w/ SLLA
Judgment: Examining NUT's neighbor cache state
=end html =head1 TERMINATION N/A =head1 NOTE The test does not invoke any remote command. =head1 SEE ALSO perldoc V6evalTool perldoc V6evalRemote =cut
7.2.3. Receipt of Neighbor Solicitations
A valid Neighbor Solicitation that does not meet any the following requirements MUST be silently discarded:
- The Target Address is a "valid" unicast or anycast address assigned to the receiving interface [ADDRCONF],
- The Target Address is a unicast address for which the node is offering proxy service, or
- The Target Address is a "tentative" address on which Duplicate Address Detection is being performed [ADDRCONF].
If the Target Address is tentative, the Neighbor Solicitation should be processed as described in [ADDRCONF]. Otherwise, the following description applies. If the Source Address is not the unspecified address and, on link layers that have addresses, the solicitation includes a Source Link-Layer Address option, then the recipient SHOULD create or update the Neighbor Cache entry for the IP Source Address of the solicitation. If an entry does not already exist, the node SHOULD create a new one and set its reachability state to STALE as specified in Section 7.3.3. If an entry already exists, and the cached link-layer address differs from the one in the received Source Link-Layer option, the cached address should be replaced by the received address and the entry's reachability state MUST be set to STALE.
===============================+==========+=========+================= NS |New State |LLA Comments ---------+-----------+---------+ | Source IP|Destination|SLLA | | |IP | | | =========+===========+=========+==========+=========+================= TN's Unicast none NONCE or unchanged Not mentioned link INCOMPLETE by RFC2461 ---------+-----------+---------+----------+---------+----------------- TN's Unicast exist STALE updated link ---------+-----------+---------+----------+---------+----------------- TN's Multicast exist STALE updated link =========+===========+=========+==========+=========+=================