A DHCP server in the local subnet responds with a unicast DHCP offer message containing the your ip address field as well as other configuration parameters in the option fields (such as subnet mask, default gateway, DNS server IP addresses, lease time, etc.).
Bridged CO
configure
service
vpls 1 customer 1 create
- - - snip - - -
sap 1/1/2:1 split-horizon-group "rshg-1" create
description "sub-1"
dhcp
snoop
no shutdown
exit
exit
configure
service
vpls 1 customer 1 create
- - - snip - - -
spoke-sdp 1:1 create
dhcp
snoop
exit
exit
For Routed CO, DHCP snooping is implicitly enabled by configuring a DHCP relay agent (DHCP Relay Agent ): All DHCP messages received on a routed network interface will be snooped (for example, intercepted and sent to the control plane for further processing).
configure
service
vprn 1 customer 1 create
- - - snip - - -
interface "int-BSA1-p2mp-1" create
description "Bridged CO"
address 10.1.0.254/16
dhcp
server 172.16.0.1
trusted
gi-address 10.1.0.254
no shutdown
exit
ip-mtu 1500
spoke-sdp 1:1 create
exit
exit
For Routed CO, the DHCP relay agent function must be configured at BSR-1 group-interface level where the DHCP host will be instantiated:
configure
service
vprn 1 customer 1 create
- - - snip - - -
subscriber-interface "sub-int-1" create
description "Routed CO"
address 10.2.0.254/16
group-interface "group-int-1" create
dhcp
server 172.16.0.1
trusted
gi-address 10.2.0.254
no shutdown
exit
The trusted command makes the interface a trusted interface to allow Option 82 insertion by a Layer 2 DHCP
relay agent (see
DHCP Options (Relay Agent Information) ).
A Layer 2 DHCP relay agent (such as BSAN or BSA) can add DHCP Option 82 information and leave the gi-address field to 0.0.0.0. The gi-address is the gateway IP address, filled in by the DHCP
relay agent. An incoming DHCP discover with Option 82 present and gi-address field = 0.0.0.0 will be dropped by the DHCP relay agent according the RFC. The Rx Untrusted Packets and client Packets Discarded counters are increased in the DHCP statistics.
DROPPED DHCP Boot Request on Interface group-int-1 (1/1/3:1) Port 67
Problem: message is received from an untrusted client
In Bridged CO, when DHCP snooping is enabled on a VPLS SAP, DHCP Option 82 relay agent information can be altered or added on an incoming DHCP discover/request. This is sometimes referred to as a Layer 2 DHCP
relay agent function.
In Routed CO, a DHCP relay agent can alter or add the DHCP Option 82
relay agent information on an incoming DHCP discover/request.
configure
service
vpls 1 customer 1 create
- - - snip - - -
sap 1/1/2:1 split-horizon-group "rshg-1" create
dhcp
snoop
option
action replace
circuit-id
remote-id string "Opt-82 [2] - Remote ID"
vendor-specific-option
system-id
client-mac-address
service-id
sap-id
string "Opt-82 [9][5] - Vendor
configure
service
vprn 1 customer 1 create
- - - snip - - -
subscriber-interface "sub-int-1" create
description "Routed CO"
address 10.2.0.254/16
group-interface "group-int-1" create
dhcp
option
action replace
circuit-id
remote-id string "Opt-82 [2] Remote ID"
vendor-specific-option
system-id
client-mac-address
pool-name
service-id
sap-id
string "Opt-82 [9][5] string"
exit
exit
server 172.16.0.1
trusted
gi-address 10.2.0.254
no shutdown
exit
A:BSA-1# show service id 1 dhcp statistics
=====================================================
DHCP Statistics, service 1
=====================================================
Client Packets Snooped : 130
Client Packets Forwarded : 125
Client Packets Dropped : 5
Client Packets Proxied (RADIUS) : 0
Client Packets Proxied (Lease-Split) : 0
Server Packets Snooped : 64
Server Packets Forwarded : 64
Server Packets Dropped : 0
DHCP RELEASEs Spoofed : 0
DHCP FORCERENEWs Spoofed : 0
=====================================================
A:BSA-1#
*A:BSR-1# show router 1 dhcp statistics
*A:BSR-1# show service id 1 dhcp statistics
========================================================
DHCP Global Statistics, service 1
========================================================
Rx Packets : 28469
Tx Packets : 28402
Rx Malformed Packets : 0
Rx Untrusted Packets : 4
Client Packets Discarded : 4
Client Packets Relayed : 14251
Client Packets Snooped : 12
Client Packets Proxied (RADIUS) : 0
Client Packets Proxied (Lease-Split) : 0
Server Packets Discarded : 0
Server Packets Relayed : 14191
Server Packets Snooped : 7
DHCP RELEASEs Spoofed : 0
DHCP FORCERENEWs Spoofed : 0
========================================================
*A:BSR-1#
"SVCMGR: Dropped DHCP Packet
VPLS 1, SAP 1/1/2:1
Problem: port config doesn't allow BOOTP/DHCP packets with Option 82"
"PIP: DHCP
instance 2 (1), interface index 4 (group-int-1),
DROPPED DHCP Boot Request on Interface group-int-1 (1/1/3:1) Port 67
Problem: action drop is configured and packet contains Option 82
configure
service
vpls 1 customer 1 create
- - - snip - - -
sap 1/1/2:1 split-horizon-group "rshg-1" create
dhcp
snoop
option
action drop
exit
no shutdown
exit
configure
service
vprn 1 customer 1 create
- - - snip - - -
subscriber-interface "sub-int-1" create
description "Routed CO"
address 10.2.0.254/16
group-interface "group-int-1" create
dhcp
option
action drop
exit
server 172.16.0.1
trusted
gi-address 10.2.0.254
no shutdown
exit
•
|
At ingress — Incoming DHCP discover/request without Option 82 information will be forwarded to (Bridged CO) or processed by (Routed CO) the DHCP relay agent as is, ignoring any configured option.
|
configure
service
vpls 1 customer 1 create
- - - snip - - -
sap 1/1/2:1 split-horizon-group "rshg-1" create
dhcp
snoop
option
action keep
exit
no shutdown
exit
configure
service
vprn 1 customer 1 create
- - - snip - - -
subscriber-interface "sub-int-1" create
description "Routed CO"
address 10.2.0.254/16
group-interface "group-int-1" create
dhcp
option
action keep
exit
server 172.16.0.1
trusted
gi-address 10.2.0.254
no shutdown
exit
The DHCP lease information for a specific host is extracted from the DHCP ack message.
Table 25 displays some typical information stored in the DHCP lease state. The table does not display all information: additional data is added for managed SAPs, DHCPv6, etc.
configure
service
vpls 1 customer 1 create
- - - snip - - -
sap 1/1/2:1 split-horizon-group "rshg-1" create
dhcp
snoop
lease-populate 10
no shutdown
exit
For Routed CO, DHCP lease state population is enabled by default on a group interface with DHCP configured as no shutdown The number of leases allowed on each SAP of the group-interface must be configured (by default a single DHCP host is allowed on each SAP):
configure
service
vprn 1 customer 1 create
- - - snip - - -
subscriber-interface "sub-int-1" create
description "Routed CO"
address 10.2.0.254/16
group-interface "group-int-1" create
dhcp
server 172.16.0.1
trusted
lease-populate 10
gi-address 10.2.0.254
no shutdown
exit
To check the DHCP lease state for a particular service, use the show service id service-id dhcp lease-state command. Detailed output as well as additional output filtering is available:
A:BSA-1# show service id 1 dhcp lease-state ?
- lease-state [sap <sap-id>|sdp <sdp-id:vc-id>|interface
<interface-name>ip-address <ip-address[/mask]>|chaddr <ieee-address>|mac
<ieee-address>|{[port <port-id>] [no-inter-dest-id | inter-dest-id
<inter-dest-id>]}] [detail]
*A:BSR-1# show service id 1 dhcp lease-state ?
- lease-state [wholesaler <service-id>] [sap <sap-id>|sdp <sdp-id:vc-id>|
interface <interface-name>|ip-address <ip-address[/mask]>|chaddr
<ieee-address>|mac <ieee-address>|{[port <port-id>] [no-inter-dest-id |
inter-dest-id <inter-dest-id>]}] [detail]
Bridged CO
*A:BSA-1# show service id 1 dhcp lease-state detail
===============================================================================
DHCP lease states for service 1
===============================================================================
Service ID : 1
IP Address : 10.1.0.100
Client HW Address : fe:fd:00:02:45:00
SAP : 1/1/2:1
Remaining Lifetime : 00h09m50s
Persistence Key : 0x00000001
Sub-Ident : ""
Sub-Profile-String : ""
SLA-Profile-String : ""
App-Profile-String : ""
Lease ANCP-String : ""
Lease Int Dest Id : ""
Category-Map-Name : ""
Sub-Ident origin : None
Strings origin : None
Lease Info origin : DHCP
Ip-Netmask : 255.255.0.0
Broadcast-Ip-Addr : N/A
Default-Router : 10.1.0.254
Primary-Dns : N/A
Secondary-Dns : N/A
Primary-Nbns : N/A
Secondary-Nbns : N/A
ServerLeaseStart : 11/20/2009 14:00:18
ServerLastRenew : 11/20/2009 14:00:18
ServerLeaseEnd : 11/20/2009 14:10:18
Session-Timeout : 0d 00:10:00
DHCP Server Addr : 172.16.0.1
Relay Agent Information
Circuit Id : BSA-1|1|1/1/2:1
Remote Id : Opt-82 [2] - Remote ID
Radius User-Name : ""
-------------------------------------------------------------------------------
Number of lease states : 1
===============================================================================
*A:BSA-1#
*A:BSR-1# show service id 1 dhcp lease-state detail
===============================================================================
DHCP lease states for service 1
===============================================================================
Service ID : 1
IP Address : 10.2.0.100
Client HW Address : fe:fd:00:02:45:00
Subscriber-interface : sub-int-1
Group-interface : group-int-1
SAP : 1/1/3:1
Remaining Lifetime : 00h09m48s
Persistence Key : N/A
Sub-Ident : ""
Sub-Profile-String : ""
SLA-Profile-String : ""
App-Profile-String : ""
Lease ANCP-String : ""
Lease Int Dest Id : ""
Category-Map-Name : ""
Sub-Ident origin : None
Strings origin : None
Lease Info origin : DHCP
Ip-Netmask : 255.255.0.0
Broadcast-Ip-Addr : N/A
Default-Router : 10.2.0.254
Primary-Dns : N/A
Secondary-Dns : N/A
Primary-Nbns : N/A
Secondary-Nbns : N/A
ServerLeaseStart : 11/26/2009 18:03:24
ServerLastRenew : 11/26/2009 18:03:24
ServerLeaseEnd : 11/26/2009 18:13:24
Session-Timeout : 0d 00:10:00
DHCP Server Addr : 172.16.0.1
Relay Agent Information
Circuit Id : Circuit-ID sub-1
Remote Id : Remote-ID sub-1
Radius User-Name : ""
-------------------------------------------------------------------------------
Number of lease states : 1
===============================================================================
*A:BSR-1#
*A:BSA-1# show service id 1 subscriber-hosts
===============================================================================
Subscriber Host table
===============================================================================
Sap IP Address MAC Address PPPoE-SID Origin
Subscriber
-------------------------------------------------------------------------------
1/1/2:1 10.1.0.100 fe:fd:00:02:45:00 N/A DHCP
sub-1
-------------------------------------------------------------------------------
Number of subscriber hosts : 1
===============================================================================
*A:BSA-1#
*A:BSR-1# show service id 1 subscriber-hosts
===============================================================================
Subscriber Host table
===============================================================================
Sap IP Address MAC Address PPPoE-SID Origin
Subscriber Fwding state
-------------------------------------------------------------------------------
1/1/3:1 10.2.0.100 fe:fd:00:02:45:00 N/A DHCP
N/A Fwding
-------------------------------------------------------------------------------
Number of subscriber hosts : 1
===============================================================================
*A:BSA-1#
A:BSR-1# show service active-subscribers
===============================================================================
Active Subscribers
===============================================================================
-------------------------------------------------------------------------------
Subscriber sub-1 (sub-profile-1)
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
(1) SLA Profile Instance sap:1/1/3:1 - sla:sla-profile-1
-------------------------------------------------------------------------------
IP Address MAC Address PPPoE-SID Origin
-------------------------------------------------------
10.2.0.100 fe:fd:00:02:45:00 N/A DHCP
-------------------------------------------------------------------------------
Number of active subscribers : 1
===============================================================================
*A:BSA-1#
*A:BSA-1# debug service id 1 dhcp ?
- dhcp
- no dhcp
[no] detail-level - Configure the DHCP tracing detail level
[no] mac - Show DHCP packets for a particular MAC address
[no] mode - Configure the DHCP tracing mode
[no] sap - Show DHCP packets for a particular SAP
[no] sdp - Show DHCP packets for a particular SDP
*A:BSR-1# debug router 1 ip dhcp ?
- dhcp [interface <ip-int-name>]
- dhcp mac <ieee-address>
- dhcp sap <sap-id>
- no dhcp [interface <ip-int-name>]
- no dhcp mac <ieee-address>
- no dhcp sap <sap-id>
- - - snip - - -
[no] detail-level - Configure the DHCP tracing detail level
[no] mode - Configure the DHCP tracing model
*A:BSA-1# show debug
debug
service
id 1
dhcp
mode egr-ingr-and-dropped
detail-level medium
exit
exit
exit
exit
*A:BSR-1# show debug
debug
router "1"
ip
dhcp
detail-level medium
mode egr-ingr-and-dropped
exit
exit
exit
exit
*A:BSA-1# configure log
*A:BSA-1>config>log# info
----------------------------------------------
log-id 1
description "Send debug log to the current telnet/ssh session"
from debug-trace
to session
exit
----------------------------------------------
*A:BSA-1#
28 2009/11/23 12:53:05.28 CET MINOR: DEBUG #2001 Base SVCMGR
"SVCMGR: TX DHCP Packet
VPLS 1, SAP 1/1/2:1
BootReply to UDP port 68
ciaddr: 0.0.0.0 yiaddr: 10.1.0.100
siaddr: 0.0.0.0 giaddr: 0.0.0.0
chaddr: fe:fd:00:02:45:00 xid: 0x6b230c18
DHCP options:
[82] Relay agent information: len = 25
[1] Circuit-id: MyCircuitID
[2] Remote-id: MyRemoteID
[53] Message type: Ack
[54] DHCP server addr: 172.16.0.1
[51] Lease time: 1200
[1] Subnet mask: 255.255.0.0
[3] Router: 10.1.0.254
[255] End
"
*A:BSA-1# show service id 1 dhcp lease-state detail
- - - snip - - -
# see above for a sample output
*A:BSA-1# clear service id 1 dhcp lease-state ?
- lease-state [no-dhcp-release]
- lease-state [port <port-id>] [inter-dest-id <intermediate-destination-id>]
[no-dhcp-release]
- lease-state [port <port-id>] no-inter-dest-id [no-dhcp-release]
- lease-state ip-address <ip-address[/mask]> [no-dhcp-release]
- lease-state mac <ieee-address> [no-dhcp-release]
- lease-state sap <sap-id> [no-dhcp-release]
- lease-state sdp <sdp-id:vc-id> [no-dhcp-release]
*A:BSA-1# clear service id 1 dhcp lease-state ip-address 10.1.0.100
*A:BSA-1# show service id 1 dhcp summary
=======================================================================
DHCP Summary, service 1
=======================================================================
Sap/Sdp Snoop Used/ Arp Reply Info Admin
Provided Agent Option State
-----------------------------------------------------------------------
sap:1/1/2:1 Yes 1/2 Yes Keep Up
sap:1/1/2:2 Yes 0/1 Yes Keep Up
sdp:1:1 Yes N/A N/A N/A N/A
-----------------------------------------------------------------------
Number of Entries : 3
-----------------------------------------------------------------------
=======================================================================
*A:BSA-1#
*A:BSR-1# show service id 1 dhcp summary
===============================================================================
DHCP Summary, service 1
===============================================================================
Interface Name Arp Used/ Info Admin
SapId/Sdp Populate Provided Option State
-------------------------------------------------------------------------------
group-int-1 No 1/2 Keep Up
-------------------------------------------------------------------------------
Interfaces: 2
===============================================================================
*A:BSA-1#
*A:BSA-1# show service id 1 dhcp statistics
=====================================================
DHCP Statistics, service 1
=====================================================
Client Packets Snooped : 474
Client Packets Forwarded : 474
Client Packets Dropped : 0
Client Packets Proxied (RADIUS) : 0
Client Packets Proxied (Lease-Split) : 0
Server Packets Snooped : 472
Server Packets Forwarded : 469
Server Packets Dropped : 3
DHCP RELEASEs Spoofed : 0
DHCP FORCERENEWs Spoofed : 0
=====================================================
*A:BSA-1#
*A:BSR-1# show router 1 dhcp statistics
====================================================================
DHCP Global Statistics (Service: 1)
====================================================================
Rx Packets : 28532
Tx Packets : 28450
Rx Malformed Packets : 0
Rx Untrusted Packets : 4
Client Packets Discarded : 20
Client Packets Relayed : 14259
Client Packets Snooped : 29
Client Packets Proxied (RADIUS) : 0
Client Packets Proxied (Lease-Split) : 0
Server Packets Discarded : 0
Server Packets Relayed : 14199
Server Packets Snooped : 21
DHCP RELEASEs Spoofed : 1
DHCP FORCERENEWs Spoofed : 0
====================================================================
*A:BSA-1#
*A:BSA-1# clear service id 1 dhcp statistics ?
- statistics [sap <sap-id> | sdp <sdp-id:vc-id> | interface <ip-int-name|
ip-address>]
*A:BSR-1# clear router 1 dhcp statistics
- statistics [<ip-int-name|ip-address>]
<ip-int-name|ip-ad*> : ip-int-name - 32 chars max
ip-address - a.b.c.d
configure
system
persistence
subscriber-mgmt
description "DHCP lease state persistency"
location cf2:
exit
exit
*A:BSA-1# file dir cf2:
Volume in drive cf2 on slot A has no label.
Volume in drive cf2 on slot A is formatted as FAT32.
Directory of cf2:\
11/23/2009 02:01p 536871424 submgmt.005
1 File(s) 536871424 bytes.
0 Dir(s) 1558183424 bytes free.
*A:BSA-1# tools perform subscriber-mgmt downgrade ?
- downgrade target-version <target> [reboot]
<target> : The version you want to downgrade to
7.0 (current) - submgmt.005
6.0 - submgmt.004
5.0 - submgmt.003
4.0 - submgmt.pst
<reboot> : reboot system after successful conversion
*A:BSA-1# show service id 1 dhcp lease-state sap 1/1/2:2 detail
===============================================================================
DHCP lease states for service 1
===============================================================================
Service ID : 1
IP Address : 10.1.0.99
Client HW Address : fe:fd:00:02:46:00
SAP : 1/1/2:2
Remaining Lifetime : 00h07m17s
Persistence Key : 0x00000005
- - - snip - - -
===============================================================================
*A:BSA-1#
*A:BSA-1# tools dump persistence submgt record 0x00000005
-----------------------------------
Persistency File Record
-----------------------------------
Filename : cf2:\submgmt.005
Key : 00000005
Last Update : 2009/11/23 14:58:17 (UTC)
Action : UPDATE
Data :
Host Type : DHCP lease state
Service ID : 1
SAP ID : 1/1/2:2
IP : 10.1.0.99
CHADDR : fe:fd:00:02:46:00
NH MAC : fe:fd:00:02:46:00
Srvr Lse Start : 2009/11/23 14:30:02 (UTC)
Srvr Last Renew: 2009/11/23 14:58:17 (UTC)
Srvr Lse End : 2009/11/23 15:08:17 (UTC)
Srvr Addr : 172.16.0.1
Option82 : 10 bytes
Option60 : 0 bytes
Sub-ID : NULL
Sub-prof-ID : NULL
SLA-prof-ID : NULL
App-prof-ID : NULL
ANCP-Str : NULL
Int-dest-ID : NULL
Cat-map-str : NULL
Dhcp6 Pfx len : 32
Dhcp6 CfgPfxLen: 0
Dhcp6 Client Id: NULL
Dhcp6 Iaid : 0
Dhcp6 Iaid Typ : 0
Dhcp6 Client Mg: ::
Sub-Id is def : NO
MSap SvcId : 0
MSap PolicyId : 0
MSap IfIndex : 0
Managed routes : None
BgpPrngPlcyAttr: None
Class Attr : 0 bytes
Radius Username:
===============================================================================
*A:BSA-1#
configure
service
vpls 1 customer 1 create
- - - snip - - -
sap 1/1/2:2 split-horizon-group "rshg-1" create
dhcp
snoop
lease-populate 10
no shutdown
exit
13 2009/11/23 15:35:27.85 CET MINOR: DEBUG #2001 Base SVCMGR
"SVCMGR: Dropped DHCP Packet
VPLS 1, SAP 1/1/2:10
Problem: lease-populate limit (10) exceeded on SAP 1/1/2:2
- - - snip - - -
158 2009/11/23 15:35:27.86 CET WARNING: DHCP #2002 Base Maximum number of lease states*
"Lease state for (CiAddr = 10.1.0.98, ChAddr = fe:fd:00:02:47:00, leaseTime = 600) was not stored because the number of DHCP lease states on SAP 1/1/2:2 in service 1 has reached its upper limit"
configure
subscriber-mgmt
sla-profile "sla-profile-1" create
host-limit 2
866 2009/11/25 12:04:04.42 CET WARNING: DHCP #2005 Base Lease State Population Error
"Lease state table population error on SAP 1/1/2:1 in service 1 - subscriber sub-1 sla-profile sla-profile-1, host-limit (2) exceeded"
Note: An optional parameter remove-oldest can be specified behind the host-limit. In this ca se, the new host is accepted and the DHCP lease state for the oldest host (with the least remaining lease time) is cleared. A DHCP release is sent to the DHCP server.
configure
service
vpls 1 customer 1 create
sap 1/1/2:1 split-horizon-group "rshg-1" create
sub-sla-mgmt
multi-sub-sap 2
configure
service
vprn 1 customer 1 create
subscriber-interface "sub-int-1" create
group-interface "group-int-1" create
sap 1/1/3:1 create
sub-sla-mgmt
multi-sub-sap 2
1404 2009/11/25 13:20:03.47 CET WARNING: DHCP #2005 Base Lease State Population Error
"Lease state table population error on SAP 1/1/2:1 in service 1 - Number of subscribers exceeds the configured multi-sub-sap limit (2)"
( (host-connectivity-verify interval) + ( (retry-count) * (retry-timeout) ) )
*A:BSA-1>config>service>vpls>sap# host-connectivity-verify ?
- host-connectivity-verify source-ip <ip-address> [source-mac
<ieee-address>] [interval <interval>] [action {remove|alarm}] [timeout
<retry-timeout>] [retry-count <count>]
<ip-address> : a.b.c.d
<ieee-address> : xx:xx:xx:xx:xx:xx or xx-xx-xx-xx-xx-xx
<interval> : [1..6000] minutes
<{remove|alarm}> : keywords
<retry-timeout> : [10..60] seconds
<count> : [2..29]
configure
service
vpls 1 customer 1 create
sap 1/1/2:2 split-horizon-group "rshg-1" create
host-connectivity-verify source-ip 0.0.0.0 interval 1 action remove
exit
configure
service
vprn 1 customer 1 create
subscriber-interface "sub-int-1" create
group-interface "group-int-1" create
host-connectivity-verify interval 1 action alarm
*A:BSA-1# show service id 1 host-connectivity-verify statistics
===============================================================================
Host connectivity check statistics
===============================================================================
Svc SapId/ DestIp Timestamp Time since Oper
Id SdpId Address last-reply/conn-lost Reply/Lost State
-------------------------------------------------------------------------------
1 1/1/2:2 10.1.0.99 11/23/2009 17:26:45 0d 00:00:44 Up
-------------------------------------------------------------------------------
1 host-connectivity states : 1 Up / 0 Down / 0 Retry pending
===============================================================================
*A:BSA-1#
836 2009/11/23 17:28:24.74 CET WARNING: SVCMGR #2206 Base Host connectivity lost
"host connectivity lost on 1/1/2:2 in service 1 for inetAddr = 10.1.0.99, chAddr=fe:fd:00:02:46:00."
*A:BSA-1# show service id 1 host-connectivity-verify statistics
===============================================================================
Host connectivity check statistics
===============================================================================
Svc SapId/ DestIp Timestamp Time since Oper
Id SdpId Address last-reply/conn-lost Reply/Lost State
-------------------------------------------------------------------------------
1 1/1/2:2 10.1.0.99 11/23/2009 17:38:28 0d 00:01:42 Down
-------------------------------------------------------------------------------
1 host-connectivity states : 0 Up / 1 Down / 0 Retry pending
===============================================================================
*A:BSA-1#
839 2009/11/23 17:41:07.74 CET WARNING: SVCMGR #2207 Base Host connectivity restored
"host connectivity restored on 1/1/2:2 in service 1, for inetAddr = 10.1.0.99, chAddr=fe:fd:00:02:46:00."
*A:BSA-1# oam host-connectivity-verify service 1 sap 1/1/2:2
==============================================================================
Triggering host connectivity verify for service 1 sap 1/1/2:2 ...
Waiting 3 seconds ...
===============================================================================
Host connectivity check statistics
===============================================================================
Svc SapId/ DestIp Timestamp Time since Oper
Id SdpId Address last-reply/conn-lost Reply/Lost State
-------------------------------------------------------------------------------
1 1/1/2:2 10.1.0.99 - - -
-------------------------------------------------------------------------------
1 host-connectivity states : 0 Up / 0 Down / 1 Retry pending
===============================================================================
*A:BSA-1#
debug
service
id 1
host-connectivity-verify
exit
exit
exit
exit
configure
service
vpls 1 customer 1 create
sap 1/1/2:2 split-horizon-group "rshg-1" create
dhcp
proxy-server
lease-time min 5
no shutdown
exit
configure
service
vprn 1 customer 1 create
subscriber-interface "sub-int-1" create
group-interface "group-int-1" create
dhcp
proxy-server
lease-time min 5
no shutdown
exit
*A:BSA-1# show service id 1 dhcp lease-state detail
===============================================================================
DHCP lease states for service 1
===============================================================================
Service ID : 1
IP Address : 10.1.0.99
Client HW Address : fe:fd:00:02:46:00
SAP : 1/1/2:2
Remaining Lifetime : 00h04m26s (Lease Split)
Persistence Key : 0x0000000e
Sub-Ident : ""
Sub-Profile-String : ""
SLA-Profile-String : ""
App-Profile-String : ""
Lease ANCP-String : ""
Lease Int Dest Id : ""
Category-Map-Name : ""
Sub-Ident origin : None
Strings origin : None
Lease Info origin : DHCP
Ip-Netmask : 255.255.0.0
Broadcast-Ip-Addr : N/A
Default-Router : 10.1.0.254
Primary-Dns : N/A
Secondary-Dns : N/A
Primary-Nbns : N/A
Secondary-Nbns : N/A
ServerLeaseStart : 11/23/2009 17:38:27
ServerLastRenew : 11/24/2009 15:27:57
ServerLeaseEnd : 11/24/2009 15:37:57
Session-Timeout : 0d 00:10:00
DHCP Server Addr : 172.16.0.1
Relay Agent Information
Circuit Id : UML246
RADIUS User-Name : ""
-------------------------------------------------------------------------------
Number of lease states : 1
===============================================================================
*A:BSA-1#
configure
service
vpls 1 customer 1 create
sap 1/1/2:1 split-horizon-group "rshg-1" create
host-connectivity-verify source-ip 10.1.0.253
exit
sap 1/1/2:2 split-horizon-group "rshg-1" create
host-connectivity-verify source-ip 10.1.0.253
exit
configure
service
vprn 1 customer 1 create
subscriber-interface "sub-int-1" create
group-interface "group-int-1" create
host-connectivity-verify