2014年8月31日日曜日

Linux: part2 : Apache




----------------------------------------------------
Chapter 14 Apache
----------------------------------------------------
--------------------------
sec.14-1 basic
--------------------------
/etc/httpd/conf/httpd.conf
/etc/httpd/conf.d        <---
/etc/httpd/modules        <--- modules' directory
/etc/rc.d/init.d/httpd        <--- Apache's init script
/etc/logrotate.d/httpd        <--- logrote configration
/usr/sbin/httpd        <--- httpd daemon (main Apache)
/var/log/httpd        <--- access_log and error_log
/var/www/cgi-bin
/var/www/html
/var/www/icons

*iptables /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
#service iptables restart

*basic setting
/etc/httpd/conf/httpd.conf
"ServerName"
ServerName www.example.com:80

*Disable character set because file created by Win is CP932 while Linux is based on UTF-8.
*comment out/etc/httpd/conf/httpd.conf
#AddDefaultCharset UTF-8

#service httpd start
#chkconfig httpd on

*HP file (/var/www/html)
#useradd -d /var/www/html -u 400 -M webadm
#passwd webadm
chown webadm:webadm /var/www/html

-u 400: uid is 400, less than 500 is system admin for uid.
#ls -l /var/www/html/index.html
#chmode -R o+r /var/www/html/

--------------------------
sec.14-1 convenient setting
--------------------------
CentOS6's Apache reads new ".conf" file under /etc/httpd/conf.d/
#service httpd configtest
#service httpd reload

/etc/httpd/conf.d/private.conf
<Directory "var/www/html/private/"
Order Deny, Allow
Deny from all
Allow from 192.168.2.0/255.255.255.0
</Directory>

Order Allow, Deny
Allow from 192.168.1.0/255.255.255.0
Deny from all

#touch /etc/httpd/conf/htpasswd
#chown apache /etc/httpd/conf/htpasswd
#chmod 600 /etc/httpd/conf/htpasswd
ls -l /etc/httpd/conf/htpasswd
#htpasswd /etc/httpd/conf/htpasswd admin
#htpasswd -D /etc/httpd/conf/htpasswd admin

<Directory "/var/www/html/private/">
Order Deny, Allow
Allow from all

AuthType Basic
AuthUserFile "/etc/httpd/conf/htpasswd"
AuthName "admin user only"
Require valid-user
</Directory>

http://www.example.com/private/

/usr/local/html/
http://www.example.com/local/
mkdir /usr/local/html
chown webadm:webadm /usr/local/html
chmode -R o+r /usr/local/html
/etc/httpd/conf.d/private.conf
#Alias for /usr/local/data
Alias /local/ "/usr/local/html/"

<Location "/local">
Order Deny, Allow
Allow from all
</Location>


/var/www/html/private/index.html
#Redirect to designet
Redirect /redirect_test.html http://www.designet.jp/top.html

*ErrorDocument 401 /notauth.html
ErrorDocument 403 /forbidden.html
ErrorDocument 404 /notfound.html

*Wecome page's disablement
mv /etc/httpd/conf.d/welcome.conf /etc/httpd/conf.d/welcome.conf.org

--------------------------
sec.14-3 Analyze--Webalizer
--------------------------
#yum install webalizer
/etc/httpd/conf.d/webalizer.conf
/etc/webalizer.conf
/etc/cron.daily/00webalizer
/usr/bin/webalizer
/ver/www/usage

/etc/httpd/conf/webalizer.conf
<Location /usage>
 Order deny,allow
 Deny from all
 Allow from 192.168.2.100
</Location>

#service httpd reload
#webalizer -Q
#ls -l /var/www/usage/

Linux: part1 : FTP

Reference p.xx を参照。

--------------------------
sec.15-1 basic --- files
--------------------------
#yum install vsftpd
----------------------------------------------------
Files
----------------------------------------------------
/etc/logrotate.d/vsftpd
etc/rc.d/init.d/vsftpd
/etc/vsftpd/ftpusers
/etc/vsftpduser_list
/etc/vsfptd/vsftpd.conf
/usr/sbin/vsftpd
/var/ftp/pub
/var/log/xferlog
----------------------------------------------------
Packet-filtering
----------------------------------------------------
/etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 21 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT

*helper-module for FTP(通常より複雑な通信をFTPが実施するために必要)
/etc/sysconfi/iptables-config
IPTABLES_MODULES="nf_conntrack_ftp"

/etc/vsftpd/vsftpd.conf
#service iptables restart

----------------------------------------------------
Configuration: vsftpdはSSHと同じようにTCP Wrapperのアクセス制御の対象となっている
----------------------------------------------------
/etc/hosts.allow
sshd:192.168.2.1
vsftpd:ALL

/etc/hosts.deny
ALL:ALL

#service vsftpd start
#chkconfig vsftpd on

----------------------------------------------------
Verification
----------------------------------------------------
*tested by anonymous user
dir …pub will be displayed.

*directory for public users of anonymous
cp screenshot.png /var/ftp/pub/

*changing SELinux
#sesebool -P ftp_home_dir on

/etc/vsftpd/vsftpd.conf
anonymous_enable=NO     <--- disabling anonymous users
#service vsftpd restart

--------------------------
sec.15-2 Login by general users
--------------------------
*configuratin of general users who cannot login FTP@ /etc/vsftpd/ftpusers

*useradd -s /sbin/nologin ftponly
passwd ftponly

#ssh -l ftponly 192.168.2.10

Python: part6 Regex search vs. group

import reでRegex を読み込みre.seach()で検索、結果はgroupで返答
search()、match()、group()は以下を参照。指定しない場合は区切りなく全て返答。
matchとsearchはmatchは行のはじめからマッチをする必要があるのに対し、searchは途中でもOK。
seachの方が両方にマッチするため便利か。以下のfile1.txtはmatchではマッチしない。

http://www.tutorialspoint.com/python/python_reg_expressions.htm
Match Object MethodsDescription
group(num=0)This method returns entire match (or specific subgroup num)
groups()This method returns all matching subgroups in a tuple (empty if there weren't any)
============================================
kurokawa-no-MacBook-Air:Linux taka$ more file-open3.py
#!/usr/bin/python
import re

f = open ('file1.txt', 'r')
f2 = open ('file2.txt', 'w')

for line in f:
 a = re.search('line-[a-zA-z|0-9]*', line)
 if a:
   f2.write(a.group())
   f2.write('\n')

f.close()
f2.close()

以下は大元のファイル
============================================
kurokawa-no-MacBook-Air:Linux taka$ more file1.txt
a,line-1,c
b,line-23,c
c,line-333a,d
a,line-4444,d
c,line-4a3ac,bb,dd
g,line-2c,33,dd
end

以下は結果で必要なマッチした文字の箇所だけを切り抜く。
============================================
kurokawa-no-MacBook-Air:Linux taka$ more file2.txt
line-1
line-23
line-333a
line-4444
line-4a3ac
line-2c

2014年8月28日木曜日

MAS: show tech-support


(MAS1500-1) #show tech-support

Hostname is MAS1500-1
System Time:Wed Aug 27 21:16:41 PST 2014
No crash information available.
Reboot Cause: User reboot.
show syslocation


Location not configured

show interface mgmt

show interface vlan 1


VLAN1 is administratively Up, Line protocol is Up
Hardware is CPU Interface, Address is 00:0b:86:95:04:b7
Description: 802.1Q VLAN
Internet address is 10.215.1.27, Netmask is 255.255.255.0
IPV6 link-local address is fe80::b:8600:195:4b7
Global Unicast address(es):
IP address is obtained through DHCP
DHCP data: server 10.215.1.254, router 10.215.1.254, domain arubanetworks.co.jp, DNS 10.215.1.1, lease time(in secs) 86400 state BOUND
Routing interface is enabled, Forwarding mode is enabled
Directed broadcast is disabled, BCMC Optimization disabled
Encapsulation 802, Loopback not set
Interface index: 50331649
MTU 1500 bytes

show roleinfo

show country


Country:US
Model:ArubaS1500-12P

show country trail


2013-12-21_09-11-14: Upgrade: domain US
2014-07-27_23-46-28: Upgrade: domain US

show inventory


Show Inventory
--------------


System Card Slot      : 0
SC Serial #           : CD0002466 (Date: 12/20/13)
SC Model Name         : ArubaS1500-12P
HW MAC Addr           : 00:0b:86:95:04:b7 to 00:0b:86:95:04:f6
CPLD Version          : Rev: 1.7 (0x1.7)
PoE Firmware Version  : 2.6.3 (Build: 75)
CPU Assembly #        : 2110190B (Rev: 03.00)
CPU Serial #          : AD50044785 (Date: 12/19/13)
Power Supply          : Present (150W)
                      : 12V System Voltage Ok
                      : 56V PoE Voltage Ok
System Temperature    : CPU Temp                : 64  C
                      : Mid Temp                : 59  C
                      : DPE Temp                : 71  C
System Voltages       : 12000mV Sense           : 12250.0 mV
                      : 5000mV 5VDD             : 5078.1 mV
                      : 3300mV Sense            : 3351.6 mV
                      : 900mV CPU               : 947.4 mV

show processes


%CPU S   PID  PPID    VSZ   RSS F  NI START     TIME      EIP CMD
 0.0 S     1     0   4360   568 4   0 03:04 00:00:31 2aca9dfc init
 0.0 S     2     1      0     0 1   - 03:04 00:00:00 00000000 [migration/0]
 0.0 S     3     1      0     0 1  19 03:04 00:00:00 00000000 [ksoftirqd/0]
 0.0 S     4     1      0     0 1   - 03:04 00:00:01 00000000 [migration/1]
 0.0 S     5     1      0     0 1  19 03:04 00:00:00 00000000 [ksoftirqd/1]
 0.0 S     6     1      0     0 1   - 03:04 00:00:00 00000000 [migration/2]
 0.0 S     7     1      0     0 1  19 03:04 00:00:00 00000000 [ksoftirqd/2]
 0.0 S     8     1      0     0 1   - 03:04 00:00:00 00000000 [migration/3]
 0.0 S     9     1      0     0 1  19 03:04 00:00:00 00000000 [ksoftirqd/3]
 0.0 S    10     1      0     0 1  -5 03:04 00:00:00 00000000 [events/0]
 0.0 S    11     1      0     0 1  -5 03:04 00:00:01 00000000 [events/1]
 0.0 S    12     1      0     0 1  -5 03:04 00:00:00 00000000 [events/2]
 0.0 S    13     1      0     0 1  -5 03:04 00:00:00 00000000 [events/3]
 0.0 S    14     1      0     0 1  -5 03:04 00:00:00 00000000 [khelper]
 0.0 S    15     1      0     0 1  -5 03:04 00:00:00 00000000 [kthread]
 0.0 S    24    15      0     0 1  -5 03:04 00:00:00 00000000 [kblockd/0]
 0.0 S    25    15      0     0 1  -5 03:04 00:00:00 00000000 [kblockd/1]
 0.0 S    26    15      0     0 1  -5 03:04 00:00:00 00000000 [kblockd/2]
 0.0 S    27    15      0     0 1  -5 03:04 00:00:00 00000000 [kblockd/3]
 0.0 S    30    15      0     0 1  -5 03:04 00:00:00 00000000 [khubd]
 0.0 S    72    15      0     0 1   0 03:04 00:00:00 00000000 [pdflush]
 0.0 S    73    15      0     0 1   0 03:04 00:00:00 00000000 [pdflush]
 0.0 S    75    15      0     0 1  -5 03:04 00:00:00 00000000 [aio/0]
 0.0 S    76    15      0     0 1  -5 03:04 00:00:00 00000000 [aio/1]
 0.0 S    77    15      0     0 1  -5 03:04 00:00:00 00000000 [aio/2]
 0.0 S    78    15      0     0 1  -5 03:04 00:00:00 00000000 [aio/3]
 0.0 S    74     1      0     0 1   0 03:04 00:00:00 00000000 [kswapd0]
 0.0 S   729     1      0     0 1   0 03:04 00:00:00 00000000 [mtdblockd]
 0.0 S   759    15      0     0 1  -5 03:04 00:00:00 00000000 [scsi_eh_0]
 0.0 S   760    15      0     0 1  -5 03:04 00:00:00 00000000 [usb-storage]
 0.0 S   842     1   2592   380 4   - 03:05 00:00:00 2ac214a4 /mswitch/bin/watchdog enable 0
 0.0 S   843     1   2592   380 4   - 03:05 00:00:00 2ac214a4 /mswitch/bin/watchdog enable 1
 0.0 S   844     1   2592   380 4   - 03:05 00:00:00 2ac214a4 /mswitch/bin/watchdog enable 2
 0.0 S   845     1   2592   380 4   - 03:05 00:00:00 2ac214a4 /mswitch/bin/watchdog enable 3
 0.0 S   930     1      0     0 1   0 03:05 00:00:00 00000000 [kjournald]
 0.0 S   973     1   4360   632 4   0 03:05 00:00:00 2aca9fd0 /bin/sh /mswitch/bin/syslogd_start
 0.0 S   976   973   6988  1692 4   0 03:05 00:00:00 2ad3a094 /mswitch/bin/syslogd -x -r -n -m 0 -f /mswitch/conf/syslog.conf
 0.0 S  1346     1  12848  2844 0   0 03:06 00:00:18 2af76094 /mswitch/bin/nanny /mswitch/bin/nanny_list 0
 0.0 S  1367  1346   4360   616 4   0 03:06 00:00:08 2aca9fd0 /bin/sh /mswitch/bin/dbstart
 0.0 S  1369  1367   4360   664 4   0 03:06 00:00:00 2aca9fd0 /bin/sh /mswitch/mysql/bin/safe_mysqld --pid-file=/var/mysql/mysql.pid
 0.0 S  1377  1346  17756  3812 4   0 03:06 00:00:00 2ae8d094 /mswitch/bin/aaa_proxy
 0.0 S  1388  1346  48096 30152 4   0 03:06 00:00:47 2b572094 /mswitch/bin/fpcli
 0.0 S  1398  1369  18008  3364 0   0 03:06 00:00:00 2b0370f8 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1399  1346  15220  3408 4   0 03:06 00:00:00 2ad58eac /mswitch/bin/switch_cmd
 0.0 S  1400  1398  18008  3364 1   0 03:06 00:00:00 2b034390 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1401  1400  18008  3364 5   0 03:06 00:00:00 2af9c478 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.2 S  1402  1346  26200  4864 4   0 03:06 00:02:33 2aeaa094 /mswitch/bin/ssm
 0.0 S  1403  1346   4812   936 4   0 03:06 00:00:00 2ad48094 /usr/sbin/xinetd -dontfork
 0.0 S  1404  1346   5052   960 4   0 03:06 00:00:00 2ad7c094 /mswitch/bin/cryptoPOST
 0.0 S  1411  1346   4736   956 0   0 03:06 00:00:00 2ad33094 /mswitch/bin/sbConsoled 0
 0.0 S  1416  1346   5624  1112 0   0 03:06 00:00:00 2ae77094 /mswitch/bin/msgHandler -g
 0.0 S  1417  1346   5260  1008 0   0 03:06 00:00:00 2adbf094 /mswitch/bin/pubsub
 0.0 S  1423  1346  50740 30920 4   0 03:06 00:00:59 2b3c3094 /mswitch/bin/cfgm
 0.0 S  1429  1346  16316  3128 4   0 03:06 00:00:00 2b14a094 /mswitch/bin/syslogdwrap
 0.0 S  1431  1346  37396  4448 4   0 03:06 00:00:02 2b87d094 /mswitch/bin/licensemgr
 0.0 S  1434  1346  27952  3476 4   0 03:06 00:00:09 2b2d7094 /mswitch/bin/rmgr
 0.0 S  1437  1346   5156  1112 4   0 03:06 00:00:00 2ad4b4a4 /mswitch/bin/sbHeartbeat
 0.0 S  1443  1346   4360   596 4   0 03:06 00:00:00 2ace4500 /sbin/klogd -n
 0.0 S  1446  1346   2276   680 4  -4 03:06 00:00:03 2ac16094 /sbin/udevd
 0.0 S  1450  1346   4360   684 4   0 03:06 00:00:18 2aca9fd0 /bin/sh /usr/sbin/mem_mon -v -t 5
 0.0 S  1452  1346   2236   500 0   0 03:06 00:00:00 2ac16094 /mswitch/bin/pktTraceLogd 0
 0.0 S  1455  1346  18056  3220 4   0 03:06 00:00:00 2b1a1094 /mswitch/bin/sambaWrapper
 0.0 S  1459  1346  41064  6964 4   0 03:06 00:00:41 2b777094 /mswitch/bin/cmica -t 0x2f
 0.0 S  1460  1346  46652 10768 4   0 03:06 00:00:25 2b598094 /mswitch/bin/dpa -t 0x17d27004 -p 0xdf -f -d 0x43ef44 -m 0x208
 0.0 S  1461  1346  39592  7076 4   0 03:06 00:00:02 2ae2a094 /mswitch/bin/stackmgr
 0.0 S  1462  1346  16808  2952 4   0 03:06 00:00:00 2b090094 /mswitch/bin/dbsync
 0.0 S  1464  1400  18008  3364 5   0 03:06 00:00:00 2ac61698 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1518  1400  18008  3364 5   0 03:06 00:00:00 2ac61698 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1546  1400  18008  3364 5   0 03:06 00:00:00 2ac61698 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1549  1346  47760 29508 4   0 03:06 00:00:38 2b380094 /mswitch/bin/arci-cli-helper
 0.0 S  1560  1346   8560  1536 4   0 03:06 00:00:00 2b02d094 /mswitch/bin/packet_filter
 0.0 S  1561  1346  11488  2200 0   0 03:06 00:00:00 2b1db094 /mswitch/bin/certmgr
 0.0 S  1565  1346  18720  3460 4   0 03:06 00:00:00 2b37f094 /mswitch/bin/aaa
 0.0 S  1567  1346  40088  7128 4   0 03:06 00:00:19 2b6ef094 /mswitch/bin/im -t0xff1 -l0x7
 0.0 S  1569  1346  32852  4832 4   0 03:06 00:00:08 2b4a5094 /mswitch/bin/cpfw
 0.0 S  1571  1346  42496  6228 4   0 03:06 00:00:03 2b844094 /mswitch/bin/isakmpd
 0.0 S  1572  1346  21244  5960 4   0 03:06 00:00:04 2b38f094 /mswitch/bin/profmgr -m1
 0.0 S  1573  1346  55268 15408 4   0 03:06 00:00:10 2b998094 /mswitch/bin/auth
 0.0 S  1574  1346  18732  3604 4   0 03:06 00:00:01 2b33e094 /mswitch/bin/udbserver -m1
 0.0 S  1575  1346  32984  4336 4   0 03:06 00:00:01 2afb5094 /mswitch/bin/dhcpdwrap
 0.0 S  1576  1346  20448  4716 4   0 03:06 00:00:00 2b696094 /mswitch/bin/snmpd
 0.0 S  1577  1346  19132  4516 4   0 03:06 00:00:00 2b696094 /mswitch/bin/trapd
 0.0 S  1578  1346   9964  1616 4   0 03:06 00:00:00 2b183094 /mswitch/bin/ntpwrap -m1
 0.0 S  1579  1346   5656  1116 4   0 03:06 00:00:00 2ae97094 /mswitch/bin/resolvwrap
 0.0 S  1580  1346   9656  1964 4   0 03:06 00:00:00 2b061094 /etc/ssh/sshd -D -f /etc/ssh/sshd_config
 0.0 S  1581  1346   7296  1016 0   0 03:06 00:00:01 2add54a4 /mswitch/bin/dbbk periodic-backup 10800
 0.0 S  1582  1346  15104  2836 4   0 03:06 00:00:00 2af79094 /mswitch/bin/httpd_wrap
 0.0 S  1586  1346  15908  3016 4   0 03:06 00:00:00 2b0c2094 /mswitch/bin/msghh
 0.0 S  1587  1346  40952  9016 4   0 03:06 00:00:42 2b665094 /mswitch/bin/cmicm -t 0x3e675
 0.0 S  1590  1346  43776  8944 4   0 03:06 00:00:56 2b7da094 /mswitch/bin/l2m
 0.0 S  1591  1346  19852  4108 4   0 03:06 00:00:00 2b5b4094 /mswitch/bin/dpm
 0.0 S  1592  1346  38940  5808 4   0 03:06 00:00:02 2b6ef094 /mswitch/bin/qosmgr
 0.0 S  1593  1346  42596  7532 4   0 03:06 00:00:08 2b5af094 /mswitch/bin/l3m
 0.0 S  1594  1346  37684  3832 4   0 03:06 00:00:28 2b5460f8 /mswitch/bin/mon_ssm
 0.0 S  1597  1346  37708  5512 4   0 03:06 00:00:30 2b665094 /mswitch/bin/rmon
 0.0 S  1598  1346  16568  3288 0   0 03:06 00:00:00 2b12d094 /mswitch/bin/actagent
 0.0 S  1599  1346  33764  3892 4   0 03:06 00:00:07 2b5ee094 /mswitch/bin/actservice
 0.0 S  1600  1346  38836  7004 4   0 03:06 00:00:50 2b7cf0f8 /mswitch/bin/central-agent
 0.0 S  1602  1600  42676 23364 0   0 03:06 00:00:35 2bb5232c [central-cfghelp]
 0.0 S  1605  1400  18008  3364 5   0 03:06 00:00:00 2ac61698 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1606  1594  37684  3832 1   0 03:06 00:00:00 2b543390 /mswitch/bin/mon_ssm
 0.0 S  1607  1606  37684  3832 5   0 03:06 00:00:00 2b5460f8 /mswitch/bin/mon_ssm
 0.0 S  1608  1606  37684  3832 5   0 03:06 00:00:07 2b60588c /mswitch/bin/mon_ssm
 0.0 S  1617  1400  18008  3364 5   0 03:06 00:00:03 2ac61698 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1630  1600  38836  7004 1   0 03:06 00:00:00 2b7cc390 /mswitch/bin/central-agent
 0.0 S  1631  1630  38836  7004 5   0 03:06 00:00:06 2b7cc390 /mswitch/bin/central-agent
 0.0 S  1656  1400  18008  3364 5   0 03:06 00:00:00 2ac61698 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  3292  1400  18008  3364 5   0 03:06 00:00:00 2ac61698 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  3313  1578  10080  5768 4   0 03:06 00:00:00 2b183094 /mswitch/bin/ntpd -g -L
 0.0 S  3400  1582  24676  6052 4   0 03:07 00:00:05 2b755094 /mswitch/apache/bin/httpd -DFOREGROUND -DSSL
 0.0 S  3401  1400  18008  3364 5   0 03:07 00:00:00 2ac61698 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.2 S 29727  1580   9796  2448 4   0 21:11 00:00:00 2b061094 sshd: admin@pts/0
 0.0 S 29743 29727   2176   400 4   0 21:11 00:00:00 2ac16094 -sshwrap
 0.0 S 30490  1450   4228   396 4   0 21:14 00:00:00 2acaa4a4 sleep 300
 0.1 S 31001  1367   4228   396 4   0 21:16 00:00:00 2acaa4a4 sleep 10
 0.0 R 31024  1399   3872   936 0   0 21:16 00:00:00 2ac20084 ps --user nobody -N -wo %cpu,state,pid,ppid,vsz,rss,flags,nice,start_time,time,eip,cmd

show process monitor statistics


Process Monitoring Action:Log Message


Process Monitor Statistics
--------------------------
Name                          State            Restarts Allowed  Restarts  Timeout Value  Timeout Chances  Time Started
----                          -----            ----------------  --------  -------------  ---------------  ------------
/mswitch/bin/dbstart          PROCESS_RUNNING  8                 0         240            5                Wed Aug 27 03:06:02 2014
/mswitch/bin/aaa_proxy        PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:02 2014
/mswitch/bin/arci-cli-helper  PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:05 2014
/mswitch/bin/fpcli            PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:02 2014
/mswitch/bin/switch_cmd       PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:02 2014
/mswitch/bin/ssm              PROCESS_RUNNING  0                 0         240            5                Wed Aug 27 03:06:02 2014
/mswitch/bin/packet_filter    PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:05 2014
/mswitch/bin/certmgr          PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:05 2014
/mswitch/bin/cryptoPOST       PROCESS_RUNNING  8                 0         240            5                Wed Aug 27 03:06:02 2014
/mswitch/bin/sbConsoled       PROCESS_RUNNING  8                 0         240            5                Wed Aug 27 03:06:03 2014
/mswitch/bin/pubsub           PROCESS_RUNNING  8                 0         240            5                Wed Aug 27 03:06:03 2014
/mswitch/bin/cfgm             PROCESS_RUNNING  8                 0         240            5                Wed Aug 27 03:06:03 2014
/mswitch/bin/syslogdwrap      PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:03 2014
/mswitch/bin/aaa              PROCESS_RUNNING  8                 0         240            5                Wed Aug 27 03:06:05 2014
/mswitch/bin/im               PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/cpfw             PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/licensemgr       PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:03 2014
/mswitch/bin/isakmpd          PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/profmgr          PROCESS_RUNNING  8                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/auth             PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/rmgr             PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:03 2014
/mswitch/bin/udbserver        PROCESS_RUNNING  8                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/dhcpdwrap        PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/snmpd            PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/trapd            PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/ntpwrap          PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/resolvwrap       PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/httpd_wrap       PROCESS_RUNNING  8                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/msghh            PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:06 2014
/mswitch/bin/sambaWrapper     PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:03 2014
/mswitch/bin/cmicm            PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:07 2014
/mswitch/bin/cmica            PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:04 2014
/mswitch/bin/l2m              PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:07 2014
/mswitch/bin/dpm              PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:07 2014
/mswitch/bin/dpa              PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:04 2014
/mswitch/bin/stackmgr         PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:04 2014
/mswitch/bin/qosmgr           PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:07 2014
/mswitch/bin/l3m              PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:07 2014
/mswitch/bin/mon_ssm          PROCESS_RUNNING  0                 0         240            5                Wed Aug 27 03:06:07 2014
/mswitch/bin/dbsync           PROCESS_RUNNING  8                 0         240            5                Wed Aug 27 03:06:04 2014
/mswitch/bin/rmon             PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:07 2014
/mswitch/bin/actagent         PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:07 2014
/mswitch/bin/actservice       PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:07 2014
/mswitch/bin/central-agent    PROCESS_RUNNING  -                 0         240            5                Wed Aug 27 03:06:07 2014

show memory


Memory (Kb): total: 761848, used: 361448, free: 400400

show memory debug

160132

memory snapshot: Wed Aug 27 21:16:42 2014
=========================================
Memory (Kb): total: 761848, free: 400460

30920 /mswitch/bin/cfgm
15408 /mswitch/bin/auth
 6228 /mswitch/bin/isakmpd
 5960 /mswitch/bin/profmgr -m1
 4832 /mswitch/bin/cpfw
 4716 /mswitch/bin/snmpd
 3604 /mswitch/bin/udbserver -m1
 2952 /mswitch/bin/dbsync

Querying excessively large apps

auth     : 15/18M (cur/typical)  0M over
stm      :  0/25M (cur/typical)  0M over
wms      :  0/18M (cur/typical)  0M over
cfgm     : 30/22M (cur/typical)  8M over
========================================


     Type           Num Allocs     Size Allocs      Peak Allocs      Peak Size
    ------         ------------   -------------    -------------    -----------

     default            166474         6490938           308536       11728487
              PC             Allocs           Size
             ----            ------           ----

            0x4204a8              1           2048
            0x421b34              1          16384
            0x436484              1            536
            0x4392b4              1            257
            0x439328              1            257
            0x43a064              1          12980
            0x48a36c              1           1024
            0x4d9034              1           1084
            0x4fda74          22152        3611537
            0x50040c              1             24
            0x5004a8              1             24
            0x500580              1             24
            0x501610              2             14
            0x5020b4              1             14
            0x5022d0              2             26
            0x50807c              3             20
            0x5080c4           3210           3210
            0x508970              2             24
            0x508a2c          14179         160581
            0x508a90           1245           9711
            0x508c18            256           1024
            0x508ce8           2040          28896
            0x508dcc           1206          14118
            0x5096d4            195            985
            0x50975c             19            105
            0x509dbc          15113          76496
            0x509f30           5611          28918
            0x50a1b4              1              4
            0x50a290              7             53
            0x50a380              5             46
            0x50a458             15             75
            0x50aeb0          22152         708864
            0x50ce10              1            124
            0x50dc18              1          17820
            0x50dc54              1          54700
            0x510274              1             12
            0x510388              2              8
            0x510488           1427          17124
            0x5293d4            149         153768
            0x52d4c8             16            576
            0x591c68             22             88
            0x591df4           1588          57168
            0x5920c0            106           1108
            0x592118            106           3392
            0x592610            786          17107
            0x5c8078             16           4480
            0x5c852c              3             24
            0x5c85f4             12             96
            0x5c8800            121            968
            0x5c8cac              3            780
            0x5c8d8c              8           2080
            0x5f7ab4              1              4
            0x605d84              2             91
          0x2ab04210           2061          65952
          0x2ab042ec            206           8240
          0x2ab04338            206          22312
          0x2ab04fc0           4073         130336
          0x2ab0501c           4073         140558
          0x2ab0763c          34364         412368
          0x2ab077c8          29442         471072
          0x2ab148dc            140           2800
          0x2ab14960              3             36
          0x2ab8a6b0              1             56
          0x2ab8bb1c              6             96
          0x2ab8bd58              1           1168
          0x2ab8cab8              3            204
          0x2ab8d5a0              1             80
          0x2ab8d5c4              1           4096
          0x2abd11d8             24            960
          0x2abdb99c              1           5252
          0x2abdbb98              1          41000
          0x2abdbbb8              1          41000
          0x2abdbfe0              1         102399
          0x2abdf830              9          15560
          0x2aed6dd4             34           1224
          0x2aed7024              5            100
          0x2af8eed0              2           8288
          0x2b1da86c              4             64
          0x2b3e4788              1           1024
          0x2b5d8f00              1           3612

fpapps   :  0/20M (cur/typical)  0M over
profmgr  :  5/ 8M (cur/typical)  0M over
isakmpd  :  6/ 6M (cur/typical)  0M over
l2tpd    :  0/ 8M (cur/typical)  0M over
mobileip :  0/ 4M (cur/typical)  0M over
ospf     :  0/ 4M (cur/typical)  0M over
cpfw     :  4/ 2M (cur/typical)  2M over
========================================


     Type           Num Allocs     Size Allocs      Peak Allocs      Peak Size
    ------         ------------   -------------    -------------    -----------

     default              1730          567801             1872         572281
              PC             Allocs           Size
             ----            ------           ----

            0x411990              7            308
            0x412da0             32           8192
            0x419d98             32           8192
            0x45696c              1           1024
          0x2aaff6b0              1             56
          0x2ab00b1c             13            208
          0x2ab00d58              1           1168
          0x2ab01ab8              3            204
          0x2ab025a0              1             80
          0x2ab025c4              1           4096
          0x2ab4686c              4             64
          0x2ad371d8             10            400
          0x2ad4199c              2          10504
          0x2ad41b98              2          82000
          0x2ad41bb8              2          82000
          0x2ad41fe0              2          18430
          0x2ad45830              2          12384
          0x2ad94210            392          12544
          0x2ad942ec             34           1360
          0x2ad94338             34           3416
          0x2ad94fc0            363          11616
          0x2ad9501c            363           5195
          0x2ad9763c             13            156
          0x2ad977c8             11            176
          0x2ada48dc              7            140
          0x2ada4960              1             12
          0x2ae1bf00              1           3612
          0x2aea4ba0              1              8
          0x2aeab0c4             23           3332
          0x2aeb76c4              2           4116
          0x2aeb7a28              1             20
          0x2aeb8770            100           3600
          0x2aeb9b88              1           1180
          0x2aeb9bb8              1           1024
          0x2b01fef0             20         283540
          0x2b451fe0            232           3074
          0x2b4643d4              1             12
          0x2b465a5c              1             12
          0x2b4c5bcc              1             18
          0x2b7625a0              1            128

pptpd    :  0/ 5M (cur/typical)  0M over
dbsync   :  2/ 3M (cur/typical)  0M over
slb      :  0/ 4M (cur/typical)  0M over
snmpd    :  4/ 5M (cur/typical)  0M over
udbserver:  3/ 4M (cur/typical)  0M over

No excessively large files found under /tmp


==============
Process Output
==============
%CPU S   PID  PPID    VSZ   RSS START CMD
 0.0 S  1423  1346  50740 30920 03:06 cfgm
 0.0 S  1388  1346  48160 30160 03:06 fpcli
 0.0 S  1549  1346  47760 29508 03:06 arci-cli-helper
 0.0 S  1602  1600  42676 23364 03:06 [central-cfghelp]
 0.0 S  1573  1346  55268 15408 03:06 auth
 0.0 S  1460  1346  46652 10768 03:06 dpa -t 0x17d27004 -p 0xdf -f -d 0x43ef44 -m 0x208
 0.0 S  1587  1346  40952  9016 03:06 cmicm -t 0x3e675
 0.0 S  1590  1346  43776  8944 03:06 l2m
 0.0 S  1593  1346  42596  7532 03:06 l3m
 0.0 S  1567  1346  40088  7128 03:06 im -t0xff1 -l0x7
 0.0 S  1461  1346  39592  7076 03:06 stackmgr
 0.0 S  1600  1346  38836  7004 03:06 central-agent
 0.0 S  1630  1600  38836  7004 03:06 central-agent
 0.0 S  1631  1630  38836  7004 03:06 central-agent
 0.0 S  1459  1346  41064  6964 03:06 cmica -t 0x2f
 0.0 S  1571  1346  42496  6228 03:06 isakmpd
 0.0 S  3400  1582  24676  6052 03:07 apache/bin/httpd -DFOREGROUND -DSSL
 0.0 S  1572  1346  21244  5960 03:06 profmgr -m1
 0.0 S  1592  1346  38940  5808 03:06 qosmgr
 0.0 S  3313  1578  10080  5768 03:06 ntpd -g -L
 0.0 S  1597  1346  37708  5512 03:06 rmon
 0.2 S  1402  1346  26200  4864 03:06 ssm
 0.0 S  1569  1346  32852  4832 03:06 cpfw
 0.0 S  1576  1346  20448  4716 03:06 snmpd
 0.0 S  1577  1346  19132  4516 03:06 trapd
 0.0 S  1431  1346  37396  4448 03:06 licensemgr
 0.0 S  1575  1346  32984  4336 03:06 dhcpdwrap
 0.0 S  1591  1346  19852  4108 03:06 dpm
 0.0 S  1599  1346  33764  3892 03:06 actservice
 0.0 S  1594  1346  37684  3832 03:06 mon_ssm
 0.0 S  1606  1594  37684  3832 03:06 mon_ssm
 0.0 S  1607  1606  37684  3832 03:06 mon_ssm
 0.0 S  1608  1606  37684  3832 03:06 mon_ssm
 0.0 S  1377  1346  17756  3812 03:06 aaa_proxy
 0.0 S  1574  1346  18732  3604 03:06 udbserver -m1
 0.0 S  1434  1346  27952  3476 03:06 rmgr
 0.0 S  1565  1346  18720  3460 03:06 aaa
 0.0 S  1399  1346  15220  3436 03:06 switch_cmd
 0.0 S  1398  1369  18008  3364 03:06 mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1400  1398  18008  3364 03:06 mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1401  1400  18008  3364 03:06 mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1464  1400  18008  3364 03:06 mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1518  1400  18008  3364 03:06 mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1546  1400  18008  3364 03:06 mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1605  1400  18008  3364 03:06 mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1617  1400  18008  3364 03:06 mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1656  1400  18008  3364 03:06 mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  3292  1400  18008  3364 03:06 mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  3401  1400  18008  3364 03:07 mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 0.0 S  1598  1346  16568  3288 03:06 actagent
 0.0 S  1455  1346  18056  3220 03:06 sambaWrapper
 0.0 S  1429  1346  16316  3128 03:06 syslogdwrap
 0.0 S  1586  1346  15908  3016 03:06 msghh
 0.0 S  1462  1346  16808  2952 03:06 dbsync
 0.0 S  1346     1  12848  2864 03:06 nanny bin/nanny_list 0
 0.0 S  1582  1346  15104  2836 03:06 httpd_wrap
 0.2 S 29727  1580   9796  2460 21:11 sshd: admin@pts/0
 0.0 S  1561  1346  11488  2200 03:06 certmgr
 0.0 S  1580  1346   9656  1964 03:06 /etc/ssh/sshd -D -f /etc/ssh/sshd_config
 0.0 S   976   973   6988  1692 03:05 syslogd -x -r -n -m 0 -f conf/syslog.conf
 0.0 S  1578  1346   9964  1616 03:06 ntpwrap -m1
 0.0 S  1560  1346   8560  1536 03:06 packet_filter
 0.0 S  1579  1346   5656  1116 03:06 resolvwrap
 0.0 S  1416  1346   5624  1112 03:06 msgHandler -g
 0.0 S  1437  1346   5156  1112 03:06 sbHeartbeat
 0.0 S  1581  1346   7296  1016 03:06 dbbk periodic-backup 10800
 0.0 S  1417  1346   5260  1008 03:06 pubsub
 0.0 S  1404  1346   5052   960 03:06 cryptoPOST
 0.0 R 31060 31026   3808   960 21:16 ps --user nobody -N -wo %cpu,state,pid,ppid,vsz,rss,start_time,cmd --sort=-rss
 0.0 S  1411  1346   4736   956 03:06 sbConsoled 0
 0.0 S  1403  1346   4812   936 03:06 /usr/sbin/xinetd -dontfork
 0.0 S  1450  1346   4360   684 03:06 /bin/sh /usr/sbin/mem_mon -v -t 5
 0.0 S  1446  1346   2276   680 03:06 /sbin/udevd
 0.0 S  1369  1367   4360   664 03:06 /bin/sh mysql/bin/safe_mysqld --pid-file=/var/mysql/mysql.pid
 4.0 S 31026 31025   4360   644 21:16 /bin/sh /usr/sbin/mem_mon
 0.0 S   973     1   4360   632 03:05 /bin/sh syslogd_start
 0.0 S  1367  1346   4360   616 03:06 /bin/sh dbstart
 0.0 S  1443  1346   4360   596 03:06 /sbin/klogd -n
 1.0 S 31025  1388   4360   588 21:16 sh -c mem_mon
 0.0 S     1     0   4360   568 03:04 init
 0.0 S 31061 31026   4424   560 21:16 sed -e s/\/mswitch\/bin\///
 0.0 S 31062 31026   4424   556 21:16 sed -e s/\/mswitch\///
 0.0 S  1452  1346   2236   500 03:06 pktTraceLogd 0
 0.0 S 29743 29727   2176   400 21:11 -sshwrap
 0.0 S 30490  1450   4228   396 21:14 sleep 300
 0.1 S 31001  1367   4228   396 21:16 sleep 10
 0.0 S   842     1   2592   380 03:05 watchdog enable 0
 0.0 S   843     1   2592   380 03:05 watchdog enable 1
 0.0 S   844     1   2592   380 03:05 watchdog enable 2
 0.0 S   845     1   2592   380 03:05 watchdog enable 3
 0.0 S     2     1      0     0 03:04 [migration/0]
 0.0 S     3     1      0     0 03:04 [ksoftirqd/0]
 0.0 S     4     1      0     0 03:04 [migration/1]
 0.0 S     5     1      0     0 03:04 [ksoftirqd/1]
 0.0 S     6     1      0     0 03:04 [migration/2]
 0.0 S     7     1      0     0 03:04 [ksoftirqd/2]
 0.0 S     8     1      0     0 03:04 [migration/3]
 0.0 S     9     1      0     0 03:04 [ksoftirqd/3]
 0.0 S    10     1      0     0 03:04 [events/0]
 0.0 S    11     1      0     0 03:04 [events/1]
 0.0 S    12     1      0     0 03:04 [events/2]
 0.0 S    13     1      0     0 03:04 [events/3]
 0.0 S    14     1      0     0 03:04 [khelper]
 0.0 S    15     1      0     0 03:04 [kthread]
 0.0 S    24    15      0     0 03:04 [kblockd/0]
 0.0 S    25    15      0     0 03:04 [kblockd/1]
 0.0 S    26    15      0     0 03:04 [kblockd/2]
 0.0 S    27    15      0     0 03:04 [kblockd/3]
 0.0 S    30    15      0     0 03:04 [khubd]
 0.0 S    72    15      0     0 03:04 [pdflush]
 0.0 S    73    15      0     0 03:04 [pdflush]
 0.0 S    75    15      0     0 03:04 [aio/0]
 0.0 S    76    15      0     0 03:04 [aio/1]
 0.0 S    77    15      0     0 03:04 [aio/2]
 0.0 S    78    15      0     0 03:04 [aio/3]
 0.0 S    74     1      0     0 03:04 [kswapd0]
 0.0 S   729     1      0     0 03:04 [mtdblockd]
 0.0 S   759    15      0     0 03:05 [scsi_eh_0]
 0.0 S   760    15      0     0 03:05 [usb-storage]
 0.0 S   930     1      0     0 03:05 [kjournald]

======================
File System Disk Space
======================
Filesystem           1k-blocks      Used Available Use% Mounted on
none                    307200      3100    304100   1% /tmp
/dev/ud3                773728     17768    716656   2% /flash

==================
Memory Statistics
==================
MemTotal:       761848 kB
MemFree:        394284 kB
Buffers:         13820 kB
Cached:         168964 kB
SwapCached:          0 kB
Active:         214768 kB
Inactive:       113940 kB
HighTotal:      524160 kB
HighFree:       207496 kB
LowTotal:       237688 kB
LowFree:        186788 kB
SwapTotal:           0 kB
SwapFree:            0 kB
Dirty:               0 kB
Writeback:           0 kB
Mapped:         194536 kB
Slab:            19296 kB
CommitLimit:    380924 kB
Committed_AS:   344800 kB
PageTables:       3452 kB
VmallocTotal:  1015800 kB
VmallocUsed:     66592 kB
VmallocChunk:   948724 kB

================
File Space Usage
================
0       /home
0       /.ssh
0       /fstmp
32      /scripts
112980  /mswitch
0       /log
1920    /etc
0       /mnt
4884    /bin
3196    /sbin
4       /dev
12      /root
9096    /usr
28004   /lib
160132

=================================
Kernel Slab Allocator Statistics
=================================
slabinfo - version: 2.1
# name            <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab> : tunables <limit> <batchcount> <sharedfactor> : slabdata <active_slabs> <num_slabs> <sharedavail>
ip_fib_alias          16    113     32  113    1 : tunables  120   60    8 : slabdata      1      1      0
ip_fib_hash           16    113     32  113    1 : tunables  120   60    8 : slabdata      1      1      0
rpc_buffers            8      8   2048    2    1 : tunables   24   12    8 : slabdata      4      4      0
rpc_tasks              8     20    192   20    1 : tunables  120   60    8 : slabdata      1      1      0
rpc_inode_cache        0      0    480    8    1 : tunables   54   27    8 : slabdata      0      0      0
xfrm6_tunnel_spi       0      0     64   59    1 : tunables  120   60    8 : slabdata      0      0      0
fib6_nodes             9    113     32  113    1 : tunables  120   60    8 : slabdata      1      1      0
ip6_dst_cache         18     51    224   17    1 : tunables  120   60    8 : slabdata      3      3      0
ndisc_cache            1     24    160   24    1 : tunables  120   60    8 : slabdata      1      1      0
RAWv6                  8     12    672    6    1 : tunables   54   27    8 : slabdata      2      2      0
UDPv6                  3     12    640    6    1 : tunables   54   27    8 : slabdata      2      2      0
tw_sock_TCPv6          0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
request_sock_TCPv6      0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
TCPv6                 10     12   1248    3    1 : tunables   24   12    8 : slabdata      4      4      0
UNIX                 288    288    448    9    1 : tunables   54   27    8 : slabdata     32     32      0
tcp_bind_bucket       36    203     16  203    1 : tunables  120   60    8 : slabdata      1      1      0
inet_peer_cache        3     59     64   59    1 : tunables  120   60    8 : slabdata      1      1      0
secpath_cache          0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
xfrm_dst_cache         0      0    288   13    1 : tunables   54   27    8 : slabdata      0      0      0
ip_dst_cache          34     60    256   15    1 : tunables  120   60    8 : slabdata      4      4      0
arp_cache              5     24    160   24    1 : tunables  120   60    8 : slabdata      1      1      0
RAW                    9     14    512    7    1 : tunables   54   27    8 : slabdata      2      2      0
UDP                   91    104    512    8    1 : tunables   54   27    8 : slabdata     13     13      0
tw_sock_TCP            0      0     96   40    1 : tunables  120   60    8 : slabdata      0      0      0
request_sock_TCP       0      0     64   59    1 : tunables  120   60    8 : slabdata      0      0      0
TCP                   30     42   1120    7    2 : tunables   24   12    8 : slabdata      6      6      0
flow_cache             0      0     96   40    1 : tunables  120   60    8 : slabdata      0      0      0
scsi_cmd_cache        11     11    352   11    1 : tunables   54   27    8 : slabdata      1      1      0
uhci_urb_priv          0      0     40   92    1 : tunables  120   60    8 : slabdata      0      0      0
cfq_ioc_pool           0      0     48   78    1 : tunables  120   60    8 : slabdata      0      0      0
cfq_pool               0      0     96   40    1 : tunables  120   60    8 : slabdata      0      0      0
crq_pool               0      0     48   78    1 : tunables  120   60    8 : slabdata      0      0      0
deadline_drq           0      0     56   67    1 : tunables  120   60    8 : slabdata      0      0      0
as_arq                24     59     64   59    1 : tunables  120   60    8 : slabdata      1      1      0
nfs_write_data        36     40    480    8    1 : tunables   54   27    8 : slabdata      5      5      0
nfs_read_data         32     36    448    9    1 : tunables   54   27    8 : slabdata      4      4      0
nfs_inode_cache        0      0    672    6    1 : tunables   54   27    8 : slabdata      0      0      0
nfs_page               0      0     64   59    1 : tunables  120   60    8 : slabdata      0      0      0
fat_inode_cache        0      0    440    9    1 : tunables   54   27    8 : slabdata      0      0      0
fat_cache              0      0     20  169    1 : tunables  120   60    8 : slabdata      0      0      0
ext2_inode_cache       0      0    496    8    1 : tunables   54   27    8 : slabdata      0      0      0
journal_handle        16    169     20  169    1 : tunables  120   60    8 : slabdata      1      1      0
journal_head          17     72     52   72    1 : tunables  120   60    8 : slabdata      1      1      0
revoke_table           2    254     12  254    1 : tunables  120   60    8 : slabdata      1      1      0
revoke_record          0      0     16  203    1 : tunables  120   60    8 : slabdata      0      0      0
ext3_inode_cache     258    264    512    8    1 : tunables   54   27    8 : slabdata     33     33      0
dnotify_cache          0      0     20  169    1 : tunables  120   60    8 : slabdata      0      0      0
eventpoll_pwq          0      0     36  101    1 : tunables  120   60    8 : slabdata      0      0      0
eventpoll_epi          0      0     96   40    1 : tunables  120   60    8 : slabdata      0      0      0
inotify_event_cache      0      0     28  127    1 : tunables  120   60    8 : slabdata      0      0      0
inotify_watch_cache      2    101     36  101    1 : tunables  120   60    8 : slabdata      1      1      0
kioctx                 0      0    192   20    1 : tunables  120   60    8 : slabdata      0      0      0
kiocb                  0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
fasync_cache           0      0     16  203    1 : tunables  120   60    8 : slabdata      0      0      0
shmem_inode_cache    575    576    480    8    1 : tunables   54   27    8 : slabdata     72     72      0
posix_timers_cache      0      0    104   37    1 : tunables  120   60    8 : slabdata      0      0      0
uid_cache              1     59     64   59    1 : tunables  120   60    8 : slabdata      1      1      0
sgpool-128            32     32   3072    2    2 : tunables   24   12    8 : slabdata     16     16      0
sgpool-64             32     35   1536    5    2 : tunables   24   12    8 : slabdata      7      7      0
sgpool-32             32     35    768    5    1 : tunables   54   27    8 : slabdata      7      7      0
sgpool-16             32     40    384   10    1 : tunables   54   27    8 : slabdata      4      4      0
sgpool-8              40     40    192   20    1 : tunables  120   60    8 : slabdata      2      2      0
scsi_io_context        0      0    104   37    1 : tunables  120   60    8 : slabdata      0      0      0
blkdev_ioc            25    127     28  127    1 : tunables  120   60    8 : slabdata      1      1      0
blkdev_queue          18     20    976    4    1 : tunables   54   27    8 : slabdata      5      5      0
blkdev_requests       21     21    184   21    1 : tunables  120   60    8 : slabdata      1      1      0
biovec-(256)         256    256   3072    2    2 : tunables   24   12    8 : slabdata    128    128      0
biovec-128           256    260   1536    5    2 : tunables   24   12    8 : slabdata     52     52      0
biovec-64            256    260    768    5    1 : tunables   54   27    8 : slabdata     52     52      0
biovec-16            256    260    192   20    1 : tunables  120   60    8 : slabdata     13     13      0
biovec-4             256    295     64   59    1 : tunables  120   60    8 : slabdata      5      5      0
biovec-1             272    406     16  203    1 : tunables  120   60    8 : slabdata      2      2      0
bio                  272    280     96   40    1 : tunables  120   60    8 : slabdata      7      7      0
sock_inode_cache     603    603    448    9    1 : tunables   54   27    8 : slabdata     67     67      0
skbuff_fclone_cache     27     27    416    9    1 : tunables   54   27    8 : slabdata      3      3      0
skbuff_head_cache    824    850    224   17    1 : tunables  120   60    8 : slabdata     50     50     60
file_lock_cache       32    111    104   37    1 : tunables  120   60    8 : slabdata      3      3      0
proc_inode_cache     670    670    392   10    1 : tunables   54   27    8 : slabdata     67     67      0
sigqueue             149    162    144   27    1 : tunables  120   60    8 : slabdata      6      6      0
radix_tree_node     3759   3780    276   14    1 : tunables   54   27    8 : slabdata    270    270      0
bdev_cache             3      7    512    7    1 : tunables   54   27    8 : slabdata      1      1      0
sysfs_dir_cache     3410   3496     40   92    1 : tunables  120   60    8 : slabdata     38     38      0
mnt_cache             20     30    128   30    1 : tunables  120   60    8 : slabdata      1      1      0
inode_cache         6748   6750    376   10    1 : tunables   54   27    8 : slabdata    675    675      0
dentry_cache        9539   9599    132   29    1 : tunables  120   60    8 : slabdata    330    331    480
filp                3012   3072    160   24    1 : tunables  120   60    8 : slabdata    128    128    480
names_cache           50     50   4096    1    1 : tunables   24   12    8 : slabdata     50     50      0
idr_layer_cache      152    174    136   29    1 : tunables  120   60    8 : slabdata      6      6      0
buffer_head         3545   3551     56   67    1 : tunables  120   60    8 : slabdata     53     53      0
mm_struct            193    207    448    9    1 : tunables   54   27    8 : slabdata     23     23     13
vm_area_struct      5256   5280     88   44    1 : tunables  120   60    8 : slabdata    120    120    120
fs_cache             221    236     64   59    1 : tunables  120   60    8 : slabdata      4      4      0
files_cache          115    126    448    9    1 : tunables   54   27    8 : slabdata     14     14      0
signal_cache         220    220    384   10    1 : tunables   54   27    8 : slabdata     22     22      0
sighand_cache        144    144   3104    2    2 : tunables   24   12    8 : slabdata     72     72      0
task_struct          180    180   1328    3    1 : tunables   24   12    8 : slabdata     60     60      0
anon_vma            2117   2233     16  203    1 : tunables  120   60    8 : slabdata     11     11      0
size-131072(DMA)       0      0 131072    1   32 : tunables    8    4    0 : slabdata      0      0      0
size-131072            1      1 131072    1   32 : tunables    8    4    0 : slabdata      1      1      0
size-65536(DMA)        0      0  65536    1   16 : tunables    8    4    0 : slabdata      0      0      0
size-65536             0      0  65536    1   16 : tunables    8    4    0 : slabdata      0      0      0
size-32768(DMA)        0      0  32768    1    8 : tunables    8    4    0 : slabdata      0      0      0
size-32768             4      4  32768    1    8 : tunables    8    4    0 : slabdata      4      4      0
size-16384(DMA)        0      0  16384    1    4 : tunables    8    4    0 : slabdata      0      0      0
size-16384             4      5  16384    1    4 : tunables    8    4    0 : slabdata      4      5      0
size-8192(DMA)         0      0   8192    1    2 : tunables    8    4    0 : slabdata      0      0      0
size-8192            426    426   8192    1    2 : tunables    8    4    0 : slabdata    426    426      0
size-4096(DMA)         0      0   4096    1    1 : tunables   24   12    8 : slabdata      0      0      0
size-4096            645    645   4096    1    1 : tunables   24   12    8 : slabdata    645    645      0
size-2048(DMA)         0      0   2048    2    1 : tunables   24   12    8 : slabdata      0      0      0
size-2048            129    130   2048    2    1 : tunables   24   12    8 : slabdata     65     65      0
size-1024(DMA)         0      0   1024    4    1 : tunables   54   27    8 : slabdata      0      0      0
size-1024            155    172   1024    4    1 : tunables   54   27    8 : slabdata     43     43      0
size-512(DMA)          0      0    512    8    1 : tunables   54   27    8 : slabdata      0      0      0
size-512             739    888    512    8    1 : tunables   54   27    8 : slabdata    111    111     27
size-256(DMA)          0      0    256   15    1 : tunables  120   60    8 : slabdata      0      0      0
size-256             408    465    256   15    1 : tunables  120   60    8 : slabdata     31     31      3
size-192(DMA)          0      0    192   20    1 : tunables  120   60    8 : slabdata      0      0      0
size-192             754    760    192   20    1 : tunables  120   60    8 : slabdata     38     38      0
size-128(DMA)          0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
size-128             893    900    128   30    1 : tunables  120   60    8 : slabdata     30     30      0
size-96(DMA)           0      0     96   40    1 : tunables  120   60    8 : slabdata      0      0      0
size-96              928    960     96   40    1 : tunables  120   60    8 : slabdata     24     24      0
size-64(DMA)           0      0     64   59    1 : tunables  120   60    8 : slabdata      0      0      0
size-32(DMA)           0      0     32  113    1 : tunables  120   60    8 : slabdata      0      0      0
size-64             1200   1239     64   59    1 : tunables  120   60    8 : slabdata     21     21      0
size-32             2917   3051     32  113    1 : tunables  120   60    8 : slabdata     27     27      0
kmem_cache           166    180    128   30    1 : tunables  120   60    8 : slabdata      6      6      0

====================
Netstat Information
====================
Proto Recv-Q Send-Q Local Address           Foreign Address         State
raw    28592      0 0.0.0.0:1               0.0.0.0:*               7

===============================
Large Files above 750K under /
===============================
 784 /bin/tcpdump
1536 /lib/libarci.so
1292 /lib/libc-2.3.6.so
5188 /lib/libcmdtree.so
1380 /lib/libcrypto.so.0.9.8
 856 /lib/libm-2.3.6.so
4616 /lib/libssmclib_dispatcher.so
4616 /lib/libssmclib_task.so
 896 /lib/libstdc++.so.6.0.3
1704 /mswitch/apache/bin/httpd
1836 /mswitch/bin/arci-cli-helper
5508 /mswitch/bin/auth
 856 /mswitch/bin/central-agent
1836 /mswitch/bin/central-cfghelper
2888 /mswitch/bin/cfgm
1964 /mswitch/bin/cmica
1868 /mswitch/bin/cmicm
1852 /mswitch/bin/cpboot
1004 /mswitch/bin/dhcpd
1440 /mswitch/bin/dhcpdwrap
3936 /mswitch/bin/dpa
1836 /mswitch/bin/fpcli
1852 /mswitch/bin/im
1972 /mswitch/bin/isakmpd
2952 /mswitch/bin/l2m
3984 /mswitch/bin/l3m
1576 /mswitch/bin/profmgr
 912 /mswitch/bin/qosmgr
 932 /mswitch/bin/rmon
2712 /mswitch/bin/snmpd
3296 /mswitch/bin/sos.corvina.elf
2692 /mswitch/bin/ssm
1860 /mswitch/bin/stackmgr
4584 /mswitch/bin/stm
1444 /mswitch/bin/trapd
1484 /mswitch/bin/wms
1132 /mswitch/conf/dbupgrade.sql
1392 /mswitch/mysql/libexec/mysqld
2632 /mswitch/vpn/setup.exe
1344 /mswitch/webui/jscripts/monitor/MFramework-single.js
 976 /mswitch/webui/switch/SSHTermApplet-signed.jar
1844 /mswitch/webui/switch/Spectrum.swf
 888 /sbin/fsck.ext2
2016 /usr/bin/7za
3812 /usr/bin/gdb

====================================
Files in /tmp directory (in blocks)
====================================
   4 RebootCause
   0 auth_restart
  16 central-getcfg-out
   0 certmgr
   0 cli-helper.sock
   4 cliWebCfgData.cfg
   0 cloudcfg_rx_fifo
   0 cloudcfg_tx_fifo
   4 cpu
   4 dbbk-periodic.pid
   0 dbsync
   0 dbupdated
   8 deviceCertLib.log.debug
   0 dhcpd.lease
   4 drive_test.log
   4 ecdsa.der
   4 ecdsakey.dat
   4 ecdsakey.der
   0 fipspipe
   4 gapdb_upgrade_log
   4 http_log_level
   4 httpd_wrkr.pid
   0 ike_restart
   4 lic_cb
   4 localtime
  36 mem_mon_last_poll
  32 mem_mon_once
   4 msgh_debug_counters
   0 msghdlr_comm
   0 mysql.sock
   4 name
   0 nanny
   0 nastmp
  12 pretemp.cfg
   4 profmgr_ids
   4 profmgr_pid
   4 ramfs_size
   0 sap_dnlded
   4 snmpstart
   4 snmptrapstart
   0 soedInternalOnly
   0 sshclicomm
   4 ssl_scache
   4 stackmgr_trace.txt
   4 swkey
   0 syslogcmdfp
   0 tempCertKey
   4 tpmCertPresent
   4 tpmKeyHandles.bin
   4 uii.cache
   0 usb

=====================================================
Memory Usage (Kbytes) of All processes on the system
=====================================================
30920 /mswitch/bin/cfgm
30164 /mswitch/bin/fpcli
29508 /mswitch/bin/arci-cli-helper
23364 [central-cfghelp]
15408 /mswitch/bin/auth
10768 /mswitch/bin/dpa -t 0x17d27004 -p 0xdf -f -d 0x43ef44 -m 0x208
 9016 /mswitch/bin/cmicm -t 0x3e675
 8944 /mswitch/bin/l2m
 7532 /mswitch/bin/l3m
 7128 /mswitch/bin/im -t0xff1 -l0x7
 7076 /mswitch/bin/stackmgr
 7004 /mswitch/bin/central-agent
 6964 /mswitch/bin/cmica -t 0x2f
 6228 /mswitch/bin/isakmpd
 6052 /mswitch/apache/bin/httpd -DFOREGROUND -DSSL
 5960 /mswitch/bin/profmgr -m1
 5808 /mswitch/bin/qosmgr
 5768 /mswitch/bin/ntpd -g -L
 5512 /mswitch/bin/rmon
 4864 /mswitch/bin/ssm
 4832 /mswitch/bin/cpfw
 4716 /mswitch/bin/snmpd
 4516 /mswitch/bin/trapd
 4448 /mswitch/bin/licensemgr
 4336 /mswitch/bin/dhcpdwrap
 4108 /mswitch/bin/dpm
 3892 /mswitch/bin/actservice
 3832 /mswitch/bin/mon_ssm
 3812 /mswitch/bin/aaa_proxy
 3604 /mswitch/bin/udbserver -m1
 3476 /mswitch/bin/rmgr
 3460 /mswitch/bin/aaa
 3436 /mswitch/bin/switch_cmd
 3364 /mswitch/mysql/libexec/mysqld --basedir=/mswitch/mysql --datadir=/var/mysql --big-tables --pid-file=/var/mysql/mysql.pid
 3288 /mswitch/bin/actagent
 3220 /mswitch/bin/sambaWrapper
 3128 /mswitch/bin/syslogdwrap
 3016 /mswitch/bin/msghh
 2952 /mswitch/bin/dbsync
 2864 /mswitch/bin/nanny /mswitch/bin/nanny_list 0
 2836 /mswitch/bin/httpd_wrap
 2460 sshd: admin@pts/0
 2200 /mswitch/bin/certmgr
 1964 /etc/ssh/sshd -D -f /etc/ssh/sshd_config
 1692 /mswitch/bin/syslogd -x -r -n -m 0 -f /mswitch/conf/syslog.conf
 1616 /mswitch/bin/ntpwrap -m1
 1536 /mswitch/bin/packet_filter
 1116 /mswitch/bin/resolvwrap
 1112 /mswitch/bin/sbHeartbeat
 1112 /mswitch/bin/msgHandler -g
 1016 /mswitch/bin/dbbk periodic-backup 10800
 1008 /mswitch/bin/pubsub
  RSZ CMD
  960 /mswitch/bin/cryptoPOST
  956 /mswitch/bin/sbConsoled 0
  936 /usr/sbin/xinetd -dontfork
  912 ps --user nobody -N -wo rsz,cmd
  684 /bin/sh /usr/sbin/mem_mon -v -t 5
  680 /sbin/udevd
  664 /bin/sh /mswitch/mysql/bin/safe_mysqld --pid-file=/var/mysql/mysql.pid
  644 /bin/sh /usr/sbin/mem_mon
  632 /bin/sh /mswitch/bin/syslogd_start
  616 /bin/sh /mswitch/bin/dbstart
  596 /sbin/klogd -n
  588 sh -c mem_mon
  568 init
  500 /mswitch/bin/pktTraceLogd 0
  492 sort -r
  436 uniq
  400 -sshwrap
  396 sleep 300
  396 sleep 10
  380 /mswitch/bin/watchdog enable 3
  380 /mswitch/bin/watchdog enable 2
  380 /mswitch/bin/watchdog enable 1
  380 /mswitch/bin/watchdog enable 0
    0 [usb-storage]
    0 [scsi_eh_0]
    0 [pdflush]
    0 [mtdblockd]
    0 [migration/3]
    0 [migration/2]
    0 [migration/1]
    0 [migration/0]
    0 [kthread]
    0 [kswapd0]
    0 [ksoftirqd/3]
    0 [ksoftirqd/2]
    0 [ksoftirqd/1]
    0 [ksoftirqd/0]
    0 [kjournald]
    0 [khubd]
    0 [khelper]
    0 [kblockd/3]
    0 [kblockd/2]
    0 [kblockd/1]
    0 [kblockd/0]
    0 [events/3]
    0 [events/2]
    0 [events/1]
    0 [events/0]
    0 [aio/3]
    0 [aio/2]
    0 [aio/1]
    0 [aio/0]


show ip interface brief


Flags: S - Secondary IP address
Interface                   IP Address / IP Netmask        Admin   Protocol   Flags
vlan 1                     10.215.1.27 / 255.255.255.0     Up      Up
vlan 300                    unassigned / unassigned        Up      Up

DHCP is enabled on VLAN(s) 1

show poe


Port     Status  Voltage(mV)  Current(mA)  Power (mW)
----     ------  -----------  -----------  ----------
GE0/0/0  Off     N/A          N/A          N/A
GE0/0/1  On      55500        110          6100
GE0/0/2  Off     N/A          N/A          N/A
GE0/0/3  On      55500        81           4500
GE0/0/4  On      55900        73           4000
GE0/0/5  Off     N/A          N/A          N/A
GE0/0/6  Off     N/A          N/A          N/A
GE0/0/7  Off     N/A          N/A          N/A

Total Power Usage: 14600 (mW)

show interface counters


Port     InOctets  InUcastPkts  InMcastPkts  InBcastPkts
----     --------  -----------  -----------  -----------
GE0/0/0  67129225  72247        379381       195682

GE0/0/1  4120411   16752        1976         23

GE0/0/3  1514721   3635         2190         51

GE0/0/4  5893172   3619         2168         69353

GE0/0/5  5409858   24191        307          1167



Port     OutOctets  OutUcastPkts  OutMcastPkts  OutBcastPkts
----     ---------  ------------  ------------  ------------
GE0/0/0  17998013   62388         2381          70442

GE0/0/1  27467944   18926         111403        177661

GE0/0/3  23979149   8181          111416        177655

GE0/0/4  19545792   8190          111430        108355

GE0/0/5  38539266   33714         110787        175822


show snmp inform stats


Inform queue size is 250

SNMP INFORM STATS
-----------------
HOST  PORT  VERSION  INFORMS-INQUEUE  OVERFLOW  TOTAL INFORMS
----  ----  -------  ---------------  --------  -------------

show keys all

show vlan


VLAN CONFIGURATION
------------------
VLAN  Description  Ports
----  -----------  -----
1     VLAN0001     GE0/0/0-5 GE0/0/10-11 GE0/1/0
300   VLAN0300     GE0/0/5-9

show mac-address-table


Total MAC address: 42
Learnt: 41, Static: 0, Auth: 1, Phone: 0 Sticky: 0 Blacklisted: 0

MAC Address Table
-----------------
Destination Address  Address Type  VLAN  Destination Port
-------------------  ------------  ----  ----------------
00:00:5e:00:01:01    Learnt        0001  GE0/0/0
00:02:2a:e2:57:60    Learnt        0001  GE0/0/0
00:0b:86:60:1c:4a    Learnt        0001  GE0/0/0
00:0b:86:6c:d5:c0    Learnt        0001  GE0/0/0
00:0b:86:6e:70:2c    Learnt        0001  GE0/0/0
00:0b:86:6e:70:44    Learnt        0001  GE0/0/0
00:0b:86:cf:95:94    Learnt        0001  GE0/0/1
00:0c:29:07:7f:11    Learnt        0001  GE0/0/0
00:0c:29:10:06:3b    Learnt        0001  GE0/0/0
00:0c:29:16:ef:49    Learnt        0001  GE0/0/0
00:0c:29:26:52:1f    Learnt        0001  GE0/0/0
00:0c:29:3d:15:c9    Learnt        0001  GE0/0/0
00:0c:29:42:43:ea    Learnt        0001  GE0/0/0
00:0c:29:46:c2:d0    Learnt        0001  GE0/0/0
00:0c:29:51:f2:ee    Learnt        0001  GE0/0/0
00:0c:29:60:a1:85    Learnt        0001  GE0/0/0
00:0c:29:79:55:6a    Learnt        0001  GE0/0/0
00:0c:29:bc:35:79    Learnt        0001  GE0/0/0
00:0c:29:c4:81:be    Learnt        0001  GE0/0/0


MAC Address Table
-----------------
Destination Address  Address Type  VLAN  Destination Port
-------------------  ------------  ----  ----------------
00:0d:0b:e6:d9:1a    Learnt        0001  GE0/0/0
00:0f:e5:02:35:cb    Learnt        0001  GE0/0/0
00:10:23:f0:15:b2    Learnt        0001  GE0/0/0
00:15:5d:06:a9:0e    Learnt        0001  GE0/0/0
00:15:5d:06:ab:01    Learnt        0001  GE0/0/0
00:1f:fe:a7:1b:40    Learnt        0001  GE0/0/0
00:24:b2:57:2c:78    Learnt        0001  GE0/0/0
00:e0:db:0b:47:38    Learnt        0001  GE0/0/0
00:e0:db:0b:fa:a5    Learnt        0001  GE0/0/0
08:00:46:da:74:63    Learnt        0001  GE0/0/0
08:11:96:8a:54:6c    Learnt        0001  GE0/0/0
14:7d:c5:c8:64:69    Learnt        0001  GE0/0/1
28:92:4a:2b:fa:f7    Learnt        0001  GE0/0/0
28:d2:44:60:36:b9    Learnt        0001  GE0/0/0
34:f6:2d:51:af:18    Learnt        0001  GE0/0/0
6c:f3:7f:c6:7e:a6    Learnt        0001  GE0/0/0
70:58:12:25:e9:82    Learnt        0001  GE0/0/0
d0:67:e5:c0:82:5a    Learnt        0001  GE0/0/0
d8:c7:c8:c4:40:67    Learnt        0001  GE0/0/3


MAC Address Table
-----------------
Destination Address  Address Type  VLAN  Destination Port
-------------------  ------------  ----  ----------------
d8:c7:c8:c8:eb:e8    Learnt        0001  GE0/0/4
ec:a8:6b:f1:e9:c8    Learnt        0001  GE0/0/0
f0:de:f1:72:78:e0    Auth          0001  GE0/0/5
f8:bc:12:e0:ba:b1    Learnt        0001  GE0/0/0

show ip route


Codes: C - connected
       O - OSPF, O(IA) - OSPF inter area
       O(E1) - OSPF external type 1, O(E2) - OSPF external type 2
       O(N1) - OSPF NSSA type 1, O(N2) - OSPF NSSA type 2
       M - mgmt, S - static, * - candidate default
       D - DHCP

Gateway of last resort is 10.215.1.254 to network 0.0.0.0 at cost 0
D       * 0.0.0.0  /0 [0] via 10.215.1.254
C        10.215.1.0/24 is directly connected: vlan1
C        10.215.1.27/32 is directly connected: vlan1

show trunk


Trunk Port Table
----------------
Port  Vlans Allowed  Vlans Active  Native Vlan
----  -------------  ------------  -----------

show igmp-snooping groups


IGMP Snooping Multicast Route Table
-----------------------------------
VLAN  Group  Port List
----  -----  ---------

show igmp-snooping membership


IGMP Snooping Multicast Membership
----------------------------------
VLAN  Group  Port  Expiry  UpTime
----  -----  ----  ------  ------

show igmp-snooping mrouter


Flags: D - Dynamic, S - Static, P - PIM, M - IGMP/MLD query

IGMP Snooping Multicast Router Ports
------------------------------------
VLAN  Elected-Querier  Ports (Flags)  Expiry  UpTime  Src-Ip
----  ---------------  -------------  ------  ------  ------

show acl acl-table


AclTable
--------
ACL  Type            ACE Index  Rule Count  Ace Count  Name                        Applied
---  ----            ---------  ----------  ---------  ----                        -------
1    role            0          0           1          logon                       0
2    role-stateless  345        4           5          logon                       0
3    session         334        2           3          validuser                   0
4    role            0          0           1          guest                       28
5    role-stateless  339        5           6          guest                       0
6    role            0          0           1          authenticated               0
7    role-stateless  337        1           2          authenticated               0
8    role            412        18          19         sys-ap-role                 0
9    role-stateless  431        18          19         sys-ap-role                 0
10   session         1          9           10         sys-control                 0
11   session         352        9           10         sys-ap-acl                  0
12   session         400        1           2          sys-cp-acl                  0
13   stateless       23         9           10         sys-control-stateless       0
14   stateless       402        9           10         sys-ap-acl-stateless        0
15   stateless       450        1           2          sys-cp-acl-stateless        0
16   session         0          0           1          stateful-dot1x              0
17   role            0          0           1          preauth                     0
18   role-stateless  0          0           1          preauth                     0
19   role            0          0           1          denyall                     0
20   role-l2         0          0           1          denyall                     0
21   role-stateless  47         1           2          denyall                     0
22   stateless       45         1           2          denyall-stateless           0
23   stateless       49         1           2          denydhcp                    0
24   role            0          0           1          denydhcp                    0
25   role-stateless  51         1           2          denydhcp                    0
26   ether-type      312        2           3          validuserethacl             0
27   stateless       315        1           2          allowall-stateless          0
28   stateless       317        1           2          dhcp-acl-stateless          0
29   stateless       319        1           2          dns-acl-stateless           0
30   stateless       321        1           2          http-acl-stateless          0
31   stateless       323        1           2          https-acl-stateless         0
32   stateless       325        1           2          icmp-acl-stateless          0
33   stateless       327        4           5          logon-control-stateless     0
34   stateless       332        1           2          tpl-CPPM-Pub-mac-auth-acl   0
35   role            0          0           1          tpl-CPPM-Pub-mac-auth-role  0
36   role-stateless  350        1           2          tpl-CPPM-Pub-mac-auth-role  0
Total ACE entries in use = 131
Total free ACE entries = 3837
Free ACE entries at the bottom = 3516
Next ACE entry to use = 452 (table 0)
Ace entries reused 4 times
ACE table reinitialized 0 times
ACL count 37, tunnel acl 0

show aaa authentication all


Auth Method Statistics
----------------------
Method             Success  Failures
------             -------  --------
MAC                1        0
radius-accounting  105      0

show aaa authentication-server all


Auth Server Table
-----------------
Name          Type    FQDN  IP addr         AuthPort  AcctPort  Status   Requests
----          ----    ----  -------         --------  --------  ------   --------
Internal      Local   n/a   127.0.0.1       n/a       n/a       Enabled  0
tpl-CPPM-Pub  Radius  none  114.179.12.251  1812      1813      Enabled  106
Total:2

show aaa authentication-server radius statistics


RADIUS Server Statistics
------------------------
Statistics             tpl-CPPM-Pub
----------             ------------
Accounting Requests    105
Raw Requests           0
PAP Requests           1
CHAP Requests          0
MS-CHAP Requests       0
MS-CHAPv2 Requests     0
Mismatch Response      0
Bad Authenticator      0
Access-Accept          1
Access-Reject          0
Accounting-Response    105
Access-Challenge       0
Unknown Response code  0
Timeouts               1
AvgRespTime (ms)       62
Total Requests         106
Total Responses        106
Uptime (d:h:m)         0:18:9
SEQ Total/Free         255/255
Orphaned requests = 0

show aaa radius-attributes


Dictionary
----------
Attribute                       Value  Type     Vendor     Id
---------                       -----  ----     ------     --
MS-CHAP-NT-Enc-PW               6      String   Microsoft  311
Suffix                          1004   String
Revoke-Text                     316    String
WISPr-Session-Term-End-Of-Day   10     Integer  WISPr      14122
WISPr-Redirection-URL           4      String   WISPr      14122
Menu                            1001   String
Acct-Session-Time               46     Integer
Framed-AppleTalk-Zone           39     String
Connect-Info                    77     String
Acct-Ouput-Packets              48     Integer
Aruba-Location-Id               6      String   Aruba      14823
Service-Type                    6      Integer
Rad-Length                      310    Integer
CHAP-Password                   3      String
WISPr-Bandwidth-Min-Down        6      Integer  WISPr      14122
Aruba-Template-User             8      String   Aruba      14823
Event-Timestamp                 55     Date
Login-Service                   15     Integer
Exec-Program-Wait               1039   String
Tunnel-Password                 69     String
Framed-IP-Netmask               9      IP Addr
Acct-Output-Gigawords           53     Integer
MS-CHAP-CPW-2                   4      String   Microsoft  311
DB-Entry-State                  318    String
Acct-Tunnel-Packets-Lost        86     Integer
Tunnel-Connection-Id            68     String
Session-Timeout                 27     Integer
MS-CHAP-Domain                  10     String   Microsoft  311
MS-CHAP-LM-Enc-PW               5      String   Microsoft  311
ARAP-Password                   70     String
CHAP-Challenge                  60     String
NAS-IP-Address                  4      IP Addr
ARAP-Security-Data              74     String
Called-Station-Id               30     String
Crypt-Password                  1006   String
Idle-Timeout                    28     Integer
Framed-Route                    22     String
Expiration                      21     Date
Acct-Terminate-Cause            49     Integer
Aruba-User-Role                 1      String   Aruba      14823
Rad-Code                        300    String
Framed-IP-Address               8      IP Addr
Server-Group                    313    String
Framed-Routing                  10     Integer
Huntgroup-Name                  221    String
Tunnel-Medium-Type              65     Integer
Aruba-Port-Id                   7      String   Aruba      14823
Aruba-Priv-Admin-User           3      Integer  Aruba      14823
User-Vlan                       319    String
ARAP-Features                   71     String
Callback-Id                     20     String
MS-BAP-Usage                    13     String   Microsoft  311
Tunnel-Assignment-Id            82     String
Class                           25     String
MS-CHAP-Error                   2      String   Microsoft  311
Acct-Status-Type                40     Integer
Framed-Protocol                 7      Integer
MS-Link-Utilization-Threshold   14     String   Microsoft  311
Strip-User-Name                 1035   Integer
Digest-Response                 206    String
Acct-Output-Octets              43     Integer
WISPr-Location-Name             2      String   WISPr      14122
Port-Limit                      62     Integer
Acct-Delay-Time                 41     Integer
Aruba-User-Vlan                 2      Integer  Aruba      14823
MS-MPPE-Recv-Key                17     String   Microsoft  311
Hint                            1040   String
ARAP-Zone-Access                72     Integer
Acct-Authentic                  45     Integer
MS-CHAP-Response                1      String   Microsoft  311
Termination-Menu                1002   String
WISPr-Session-Term-Time         9      String   WISPr      14122
MS-CHAP-CPW-1                   3      String   Microsoft  311
State                           24     String
User-Name                       1      String
Acct-Session-Id                 44     String
Callback-Number                 19     String
MS-MPPE-Encryption-Policy       7      String   Microsoft  311
Fall-Through                    1036   Integer
Framed-Compression              13     Integer
Prefix                          1003   String
Simultaneous-Use                1034   Integer
Domain-Name                     302    String
Message-Auth                    80     String
NAS-Identifier                  32     String
MS-CHAP-MPPE-Keys               12     String   Microsoft  311
Connect-Rate                    1007   Integer
Tunnel-Server-Auth-Id           91     String
Tunnel-Type                     64     Integer
Aruba-Essid-Name                5      String   Aruba      14823
Tunnel-Server-Endpoint          67     String
Login-LAT-Port                  63     Integer
WISPr-Billing-Class-Of-Service  11     Integer  WISPr      14122
MS-CHAP-Challenge               11     String   Microsoft  311
Aruba-AP-Group                  10     String   Aruba      14823
encryption-type                 308    String
Acct-Input-Packets              47     Integer
WISPr-Logoff-URL                3      String   WISPr      14122
Aruba-CPPM-Role                 23     String   Aruba      14823
device-type                     321    String
AP-Group                        314    String
Error-Cause                     101    Integer
ARAP-Security                   73     Integer
Acct-Input-Octets               42     Integer
MS-RAS-Version                  18     String   Microsoft  311
MS-MPPE-Send-Key                16     String   Microsoft  311
Termination-Action              29     Integer
Framed-MTU                      12     Integer
essid                           304    String
Password-Retry                  75     Integer
Calling-Station-Id              31     String
Full-Name                       315    String
dhcp-option-77                  312    String
Acct-Input-Gigawords            52     Integer
Framed-AppleTalk-Network        38     Integer
Login-LAT-Service               34     String
WISPr-Bandwidth-Max-Down        8      Integer  WISPr      14122
MS-RAS-Vendor                   9      String   Microsoft  311
Add-Port-To-IP-Address          1037   Integer
Server-Name                     301    String
Acct-Link-Count                 51     Integer
MS-CHAP2-Success                26     String   Microsoft  311
MS-Filter                       22     String   Microsoft  311
Rad-Id                          309    String
Tunnel-Client-Auth-Id           90     String
NAS-Port-Type                   61     Integer
Login-IP-Host                   14     IP Addr
Aruba-Framed-IPv6-Address       11     String   Aruba      14823
Exec-Program                    1038   String
WISPr-Bandwidth-Min-Up          5      Integer  WISPr      14122
location                        307    String
Aruba-Named-User-Vlan           9      String   Aruba      14823
Group                           1005   String
AP-Name                         317    String
Acct-Multi-Session-Id           50     String
Login-LAT-Node                  35     String
NAS-Port-Id                     5      Integer
Aruba-Admin-Role                4      String   Aruba      14823
Rad-Authenticator               303    String
Prompt                          76     Integer
Framed-AppleTalk-Link           37     Integer
WISPr-Location-ID               1      String   WISPr      14122
MS-CHAP2-CPW                    27     String   Microsoft  311
Filter-Id                       11     String
MS-CHAP2-Response               25     String   Microsoft  311
Auth-Type                       1000   Integer
User-Category                   1029   String
EAP-Message                     79     String
MS-Link-Drop-Time-Limit         15     String   Microsoft  311
Group-Name                      1030   String
macaddr                         306    String
Tunnel-Private-Group-Id         81     String
Tunnel-Client-Endpoint          66     String
Framed-IPX-Network              23     IP Addr
WISPr-Bandwidth-Max-Up          7      Integer  WISPr      14122
MS-MPPE-Encryption-Types        8      String   Microsoft  311
bssid                           305    String
Reply-Message                   18     String
Password                        2      String
Tunnel-Preference               83     Integer
Vendor-Specific                 26     String
Login-TCP-Port                  16     Integer

show aaa authentication-server internal statistics


Internal Database Server Statistics
-----------------------------------
PAP Requests            0
PAP Accepts             0
PAP Rejects             0
MSCHAPv2 Requests       0
MSCHAPv2 Accepts        0
MSCHAPv2 Rejects        0
Mismatch Response       0
Query Requests          0
Query Responses         0
Update Requests          0
Update Responses         0
Users Expired           0
Unknown Response        0
Timeouts                0
AvgRespTime (ms)        0
Uptime (d:h:m)          0:18:8
SEQ first/last/free     1,255,255

show aaa derivation-rules server-group


Server Groups
-------------
Name          Servers  Rules  hits  Out-of-service
----          -------  -----  ----  --------------
default       1        1      0
internal      1        1      0
tpl-CPPM-Pub  1        0      0

show aaa derivation-rules user


user rule groups
----------------
Name  References  Rules  Hits
----  ----------  -----  ----

show aaa server-group summary


Server Groups
-------------
Name          Servers  Rules  hits  Out-of-service
----          -------  -----  ----  --------------
default       1        1      0
internal      1        1      0
tpl-CPPM-Pub  1        0      0

show aaa state configuration


Authentication State
--------------------
Name                             Value
----                             -----
Switch IP                        10.215.1.27
Current/Max/Total IPv4 Users     1/1/2
Current/Max/Total User Entries   1/1/2
Current/Max/Total Stations       1/1/2
MAC Users                        1
Configured user roles            8
Configured session/stateles ACL  18
Configured destinations          9
Configured services              47
Configured Auth servers          2
Auth server in service           2
Radius server timeouts           1
Successful authentications
--------------------------
Web  MAC  VPN  802.1x  Krb  RadAcct  SecureID  Stateful-802.1x  Management
---  ---  ---  ------  ---  -------  --------  ---------------  ----------
0    1    0    0       0    105      0         0                0
Failed authentications
----------------------
Web  MAC  VPN  802.1x  Krb  RadAcct  SecureID  Stateful-802.1x  Management
---  ---  ---  ------  ---  -------  --------  ---------------  ----------
0    0    0    0       0    0        0         0                0
Idled users              = 0
fast age                 = Disabled
Bandwith contracts       = 0/0
IP takeovers             = 0
Ping/SYN/Sess/CP attacks = 0/0/0/0

show aaa state messages


PAPI Messages
-------------
Msg ID  Name           Since last Read  Total
------  ----           ---------------  -----
5004    set master ip  63               63
RAW socket Messages
-------------------
Msg ID  Name                        Since last Read  Total
------  ----                        ---------------  -----
33      captive portal config       1                1
59      TACACS ACCT config for cli  1                1
60      TACACS ACCT config for web  1                1
Sibyte Messages
---------------
Opcode  Name            Sent Since Last Read  Sent Total  Recv Since Last Read  Recv Total
------  ----            --------------------  ----------  --------------------  ----------
2       bridge          33                    33          0                     0
64      auth            32                    32          32                    32
75      auth l2         0                     0           2                     2
111     dot1x term      10                    10          0                     0
114     rand            2                     2           0                     0
182     dhcp resp auth  253                   253         253                   253

show aaa web admin-port


https port = 4343
http  port = 8888

show dot1x supplicant-info list-all


802.1x User Information
-----------------------
     MAC             Name        Auth  AP-MAC                 Enc-Key/Type      Auth-Mode     EAP-Type  Remote
------------       --------      ----  ------             -------------------  -----------   ---------  ------
f0:de:f1:72:78:e0  f0def17278e0  Yes   01:80:c2:00:00:03  * * * * * * * */-    Explict Mode  -          No

Station Entries: 1

show dot1x supplicant-info statistics


802.1x Statistics
-----------------
Mac     Name  AP  Auth-Succs  Auth-Fails  Auth-Tmout  Re-Auths  Supp-Naks  UKeyRotations  MKeyRotations
---     ----  --  ----------  ----------  ----------  --------  ---------  -------------  -------------
Total:            0           0           0           0         0          0              0

Station Entries: 0

show dot1x machine-auth-cache


Machine Auth Cache Table
------------------------
MAC  Expiry  Role
---  ------  ----
Machine Auth Cached Entries: 0

show dot1x counters


       802.1x Counters


show station-table


Station Entry
-------------
     MAC            Name         Role                        Age(d:h:m)  Auth  Interface  Profile
------------       ------        ----                        ----------  ----  ---------  -------
f0:de:f1:72:78:e0  f0def17278e0  tpl-CPPM-Pub-mac-auth-role  00:18:01    Yes   0/0/5      tpl-CPPM-Pub

Station Entries: 1

show user-table


Users
-----
    IP            MAC            Name         Role                        Age(d:h:m)  Auth  Connection  Interface  Profile       Vlan
----------   ------------       ------        ----                        ----------  ----  ----------  ---------  -------       ----
10.215.1.22  f0:de:f1:72:78:e0  f0def17278e0  tpl-CPPM-Pub-mac-auth-role  00:18:01    MAC   Wired       0/0/5      tpl-CPPM-Pub  300 (1)

User Entries: 1/1

show user-table verbose


Users
-----
    IP            MAC            Name         Role                        Age(d:h:m)  Auth  Connection  Interface  Profile       Vlan     Server
----------   ------------       ------        ----                        ----------  ----  ----------  ---------  -------       ----     ------
10.215.1.22  f0:de:f1:72:78:e0  f0def17278e0  tpl-CPPM-Pub-mac-auth-role  00:18:01    MAC   Wired       0/0/5      tpl-CPPM-Pub  300 (1)  tpl-CPPM-Pub

User Entries: 1/1

show ip radius source-interface


Global radius source interface:
        vlan: 0
          ip: 0.0.0.0

Per-server client source IP addresses:

show auth-tracebuf count 250


Auth Trace Buffer
-----------------


Aug 27 03:07:15  mac-auth-req          ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 03:07:15  mac-auth-fail         <-  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 03:15:03  mac-auth-req          ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 03:15:03  mac-auth-success      <-  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 03:15:08  rad-acct-start        ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 03:25:38  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 03:36:08  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 03:46:11  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 03:56:41  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 04:07:11  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 04:17:41  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 04:28:11  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 04:38:13  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 04:48:43  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 04:59:13  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 05:09:14  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 05:19:44  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 05:30:14  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 05:40:44  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 05:50:52  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 06:01:22  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 06:11:52  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 06:21:53  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 06:32:23  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 06:42:53  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 06:53:23  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 07:03:53  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 07:13:54  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 07:24:01  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 07:34:31  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 07:45:01  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 07:55:31  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 08:06:01  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 08:16:31  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 08:27:01  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 08:37:31  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 08:47:32  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 08:58:02  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 09:08:03  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 09:18:33  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 09:29:03  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 09:39:33  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 09:50:03  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 10:00:33  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 10:11:03  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 10:21:33  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 10:32:03  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 10:42:04  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 10:52:34  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 11:03:04  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 11:13:34  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 11:24:04  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 11:34:05  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 11:44:35  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 11:55:05  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 12:05:35  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 12:15:36  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 12:26:06  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 12:36:36  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 12:47:06  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 12:57:36  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 13:07:37  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 13:17:44  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 13:27:45  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 13:38:15  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 13:48:45  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 13:59:15  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 14:09:45  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 14:20:15  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 14:30:23  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 14:40:53  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 14:51:23  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 15:01:53  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 15:12:23  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 15:22:31  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 15:32:32  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 15:42:39  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 15:53:09  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 16:03:14  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 16:13:44  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 16:24:14  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 16:34:15  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 16:44:45  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 16:55:15  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 17:05:45  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 17:16:15  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 17:26:46  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 17:37:16  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 17:47:46  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 17:58:16  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 18:08:17  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 18:18:47  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 18:28:50  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 18:39:20  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 18:49:50  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 19:00:20  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 19:10:50  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 19:20:51  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 19:30:55  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 19:40:56  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -


Auth Trace Buffer
-----------------


Aug 27 19:51:26  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 20:01:56  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 20:12:26  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 20:22:33  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 20:33:03  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 20:43:33  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 20:54:03  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 21:04:33  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -
Aug 27 21:15:03  rad-acct-int-update   ->  f0:de:f1:72:78:e0  01:80:c2:00:00:03  -  -

show aaa state debug-statistics


user miss: ARP=1, 8021Q=32, non-IP=0, zero-IP=6, loopback=0
user miss: mac mismatch=0, spoof=0 (0), drop=1, ncfg=0
user miss: non-auth opcode=0, ipv6=0, no-l2-user=0, l2tp=0, vrrp=0
user miss: vlan mismatch DHCP drop=0, mauth pending DHCP drop=0
Idled users = 0
Idled users due to MAC mismatch = 0
Logon lifetime iterations = 435, entries deleted = 1
Missing auth user deletes: 0

show dot1x certificates details


Certficate Hash table entries
-----------------------------


Dot1x certificate table entries
-------------------------------

show crypto ipsec transform-set


Transform set default-transform: { esp-3des esp-sha-hmac }
         will negotiate = { Transport, Tunnel }
Transform set default-ml-transform: { esp-3des esp-sha-hmac }
         will negotiate = { Transport, Tunnel }
Transform set default-boc-bm-transform: { esp-3des esp-sha-hmac }
         will negotiate = { Transport, Tunnel }
Transform set default-cluster-transform: { esp-aes256 esp-sha-hmac }
         will negotiate = { Transport, Tunnel }
Transform set default-1st-ikev2-transform: { esp-aes256 esp-sha-hmac }
         will negotiate = { Transport, Tunnel }
Transform set default-3rd-ikev2-transform: { esp-aes128 esp-sha-hmac }
         will negotiate = { Transport, Tunnel }
Transform set default-rap-transform: { esp-aes256 esp-sha-hmac }
         will negotiate = { Transport, Tunnel }

show crypto isakmp policy


ISAKMP ENABLED
Default protection suite 10001
         Version 1
         encryption algorithm: 3DES - Triple Data Encryption Standard (168 bit keys)
         hash algorithm: Secure Hash Algorithm 160
         authentication method: Pre-Shared Key
         Diffie-Hellman Group: #2 (1024 bit)
         lifetime: [300 - 86400] seconds, no volume limit
Default RAP Certificate protection suite 10002
         Version 1
         encryption algorithm: AES - Advanced Encryption Standard (256 bit keys)
         hash algorithm: Secure Hash Algorithm 160
         authentication method: Rivest-Shamir-Adelman Signature
         Diffie-Hellman Group: #2 (1024 bit)
         lifetime: [300 - 86400] seconds, no volume limit
Default RAP PSK protection suite 10003
         Version 1
         encryption algorithm: AES - Advanced Encryption Standard (256 bit keys)
         hash algorithm: Secure Hash Algorithm 160
         authentication method: Pre-Shared Key
         Diffie-Hellman Group: #2 (1024 bit)
         lifetime: [300 - 86400] seconds, no volume limit
Default RAP IKEv2 RSA protection suite 10004
         Version 2
         encryption algorithm: AES - Advanced Encryption Standard (256 bit keys)
         hash algorithm: Secure Hash Algorithm 160
         authentication method: Rivest-Shamir-Adelman Signature
         PRF method: hmac-sha1
         Diffie-Hellman Group: #2 (1024 bit)
         lifetime: [300 - 86400] seconds, no volume limit
Default Cluster PSK protection suite 10005
         Version 1
         encryption algorithm: AES - Advanced Encryption Standard (256 bit keys)
         hash algorithm: Secure Hash Algorithm 160
         authentication method: Pre-Shared Key
         Diffie-Hellman Group: #2 (1024 bit)
         lifetime: [300 - 86400] seconds, no volume limit
Default IKEv2 RSA protection suite 10006
         Version 2
         encryption algorithm: AES - Advanced Encryption Standard (128 bit keys)
         hash algorithm: Secure Hash Algorithm 96
         authentication method: Rivest-Shamir-Adelman Signature
         PRF method: hmac-sha1
         Diffie-Hellman Group: #2 (1024 bit)
         lifetime: [300 - 86400] seconds, no volume limit
Default IKEv2 PSK protection suite 10007
         Version 2
         encryption algorithm: AES - Advanced Encryption Standard (128 bit keys)
         hash algorithm: Secure Hash Algorithm 96
         authentication method: Pre-Shared Key
         PRF method: hmac-sha1
         Diffie-Hellman Group: #2 (1024 bit)
         lifetime: [300 - 86400] seconds, no volume limit
Default IKEv1 RSA protection suite 10012
         Version 1
         encryption algorithm: AES - Advanced Encryption Standard (128 bit keys)
         hash algorithm: Secure Hash Algorithm 160
         authentication method: Rivest-Shamir-Adelman Signature
         Diffie-Hellman Group: #2 (1024 bit)
         lifetime: [300 - 86400] seconds, no volume limit

show crypto isakmp key



ISAKMP Local Pre-Shared keys configured for ANY FQDN
-----------------------------------------------------
Key
---

ISAKMP Local Pre-Shared keys configured by FQDN
------------------------------------------------
FQDN of the host  Key
----------------  ---

ISAKMP Local Pre-Shared keys configured by Address
---------------------------------------------------
IP address of the host  Subnet Mask Length  Key
----------------------  ------------------  ---

ISAKMP Global Pre-Shared keys configured by Address
----------------------------------------------------
IP address of the host  Subnet Mask Length  Key
----------------------  ------------------  ---

show crypto isakmp sa


% No active ISAKMP SA

show crypto ipsec sa


% No active IPSEC SA

show crypto isakmp stats


Switch IP                                           = 10.215.1.27
Main Mode Initiator exchanges started/completed     = 0/0
Main Mode Responder exchanges started/completed     = 0/0
Aggr Mode Initiator exchanges started/completed     = 0/0
Aggr Mode Responder exchanges started/completed     = 0/0
Quick Mode Initiator exchanges started/completed    = 0/0
Quick Mode Responder exchanges started/completed    = 0/0
XAuth Type1 Responder exchanges started/completed   = 0/0
XAuth Type2 Responder exchanges started/completed   = 0/0
XAuth Authentication Pass/Fail                      = 0/0
Mode-Config Responder exchanges started/completed   = 0/0
Mode-Config Authentication Pass/Fail                = 0/0
XAuth Protocol Errors Bad-Packets/Quick-mode-fail   = 0/0
IP Pool        Alloc/Free/Free-NoSa    Alloc-Error/Free-Error = 0/0/0/0/0
IP External Pool  Alloc/Alloc-Error                 = 0/0
Authentication State Errors  No-SA/No-Msg/No-Exch   = 0/0/0
Auth Msgs  Reqs/Rcvd/AP-Down/Idle-timeout/IP-down   = 0/0/0/0/0
Auth Msg Errors Not-Ready/Reqs-Throttled/IP-UP-err/Recv-err/Rcv-NoState  = 0/0/0/0/0
IKE->Auth Msgs  IP-up/IP-down                       = 0/0
Cert-Revocation Msgs  Reqs/Rcvd/Pass/Revoked        = 0/0/0/0
Cert-Revocation Msg Errors Reqs-Throttled/Send-err/Recv-err/Rcv-NoState = 0/0/0/0
UDB Msgs Reqs-Throttled/Req-sent/Req-send-errors/Resp-rcvd/Rcv-NoState = 0/0/0/0/0
ACR License Msgs Request/Delete/Req-errors/Resp-rcvd/Resp-error  = 0/0/0/0/0 Allow/Fail 0/0 Limit:0
SA delete Requests                                  = 0
Phase1 SAs Current/Max/Total                        = 0/0/0
Phase1 Completed SAs Current/Max/Total              = 0/0/0
Phase2 SAs Current/Max/Total                        = 0/0/0
Phase2 Completed SAs Current/Max/Total              = 0/0/0
Phase2 vol SAs Rekeys/Fails                         = 0/0
Modp DH regeneration due to key length mismatch     = 0
Modp DH regenerate aborts on 5 key length mismatch  = 0
Modp DH pad shared key                              = 0
VPN Sessions Total/RAPs/CAPs/Master-Local/Redun/Cluster/L2TP   = 0/0/0/0/0/0/0
VPN License Limits Total/Platform/Current/Violation = 512/512/0/0
CPSEC :                                               NOT-READY  on_msgs:0 off_msgs:0 notready:0 denied_drop:0
Cluster :   Role/Num-Cfgd-Members                     NONE/0
Cluster Pubsub:           Init->None/None->Root/Root->None  1/0/0
Cluster Pubsub:   None->Member/Member-IPChange/Member->None 0/0/0
Cluster Pubsub Replies:   None/Member/Root/NotReady 1/0/0/0
CFGM triggers: Master/Local/Redund/Failed/Total     = 4347/0/0/0/4347
Redundancy changes: Standby/Master/Ignored/Config = 0/0/0/0 tunnel:n config:n
VLAN changes:   Requests/Inserts/Modifies/Deletes   = 0/1/0/0
VLAN errors:   Insert/Bind/Delete/No-change   = 0/0/0/0
VRIP changes:   Adds/Modifies/Deletes               = 0/0/0
Masterip Requests/Replies                           = 1/5
SwitchIP Requests/Replies                           = 0/0
FPAPPS TX messages: Tunnel-Up/Tunnel-Down           = 0/0
FPAPPS TX messages: cfg-map-add/cfg-map-del         = 0/0
FPAPPS TX messages: Peer-map-add/Peer-map-del       = 0/0
FPAPPS TX messages: SwitchIP-mapadd/SwitchIP-mapdel = 0/0
FPAPPS TX messages: New-SwitchIP-map-adds           = 0
Datapath To Control DPD Triggers Received           = 0
DPD Initiate Reqs-Sent/Re-Sent/Replies-Rcvd/Dropped = 0/0/0/0
DPD Responder Reqs-Rcvd/Reqs-Dropped/Replies-Sent   = 0/0/0
DPD peers detected as Dead/P1_SA/P2_SA              = 0/0/0
L2TP tunnel events received:  Add/Delete            = 0/0
L2TP Delete tunnel events sent:  Success/Fail       = 0/0
L2TP IPSEC-list sent:            Success/Fail       = 0/0
RAP PSK stats IKE SA: Bad = 0
Route Trigger events sent:  Add/Delete              = 0/0
Route Table w/Gateway events sent:  Add/Delete      = 0/0
Route Cache events sent:  Add-Success/Fail = 0/0  Delete-Success/Fail = 0/0
CP ARP events sent:  Delete/Fail                    = 0/0
CP Route events sent:  Add-Success/Fail =0/0  Delete-Success/Fail = 0/0
Garbage SA deletions: ISAKMP-SA/IPSec-SA            = 0/0
Rcvd Cert-chain: Verified/Failed                    = 0/0
Rcvd Cert-chain error: Invalid ID and pubkey        = 0
Rcvd Cert-chain error: no username(mode-cfg only)   = 0
Cert-chain error in encryption/decryption           = 0/0
Cert-chain error in sig-len/hash-len/hash           = 0/0/0
Hash Encode  Attempts/Errors                        = 0/0
Hash Decode  Attempts/Errors                        = 0/0
Cert-manager registration: Started/Completed        = 0/0
Cert-manager errors: Cert-Not-found/No-reply        = 0/0
IKE To CPFW DST-NAT messages sent/retries/failed    = 0/0/0
Control To Datapath SA Adds/Failed Adds             = 0/0
Control To Datapath SA Deletions/Failed Deletions   = 0/0
IKE - Datapath DH1 request/errors response/errors   = 0/0 0/0
IKE - Datapath DH2 request/errors response/errors   = 0/0 0/0
IKE - Datapath RSA/DH Generic Response success/errors  = 0/0
IKE - Datapath RSA sign1 request/errors response/errors   = 0/0 0/0
IKE - Datapath RSA sign2 request/errors response/errors   = 0/0 0/0
IKE - Datapath RSA 2048 sign request/errors response/errors   = 0/0 0/0
Datapath To Control IKE Triggers Received/Ignored   = 0/0
Timers Current/Max/Total                            = 0/0/0
SA Soft timers Current/Max/Total                    = 0/0/0
SA Hard timers Current/Max/Total                    = 0/0/0
NAT-T Timers Current/Max/Total                      = 0/0/0
IKE Fragment Reassembly   Success/Timeout           = 0/0
IKE Rcvd Fragments Current/Max/Total                = 0/0/0
IKE Rcvd Fragments Duplicates/Errors                = 0/0
IKE Sent Fragments Current/Max/Total                = 0/0/0
IKE Packets Fragmented/Retransmitted                = 0/0
IKE Messages Current/Max/Total                      = 0/0/0
Message Payloads Current/Max/Total                  = 0/0/0
Message Timers Current/Max/Total                    = 0/0/0
IKE Msg-Errors Duplicate/Invalid/Decrypt-Error/PSK  = 0/0/0/0
IKE Msg-Errors Dec-NoSa/NoKS/InvExch                = 0/0/0
IKE Exchanges Current/Max/Total                     = 0/0/0
Exchange Timers Current/Max/Total                   = 0/0/0
SOS IKE packets  TX/RX                              = 0/0
UDP ESP pkts:0 NATT-Keepalives:0
Virtual Transports Current/Max/Total                = 2/2/2  Reinits:0 Drops:0
UDP Transports Current/Max/Total                    = 4/4/4
Cloned Transports Virt/Enc/UDP/SOS-enc/SOS/s2s/Fail   = 0/0/0/0/0/0/0
IKEv2 - IKE_SA Initiator exchanges started/completed              = 0/0
IKEv2 - IKE_SA Responder exchanges started/completed              = 0/0
IKEv2 - IPSEC_SA Initiator exchanges started/completed            = 0/0
IKEv2 - IPSEC_SA Responder exchanges started/completed            = 0/0
IKEv2 - Informational started/completed                           = 0/0
IKEv2 - Delete started/completed                                  = 0/0
IKEv2 - EAP exchanges started/completed                           = 0/0
IKEv2 - EAP Authentication Pass/Fail                              = 0/0
IKEv2 - EAP Unsupported Authentication Requests                   = 0
IKEv2 - IKE SAs In-Use/Free/Total                                 = 0/0/0
IKEv2 - IKE Completed SAs Current/Max/Total                       = 0/0/0
IKEv2 - IPSEC SAs In-Use/Free/Total                               = 0/0/0
IKEv2 - IPSEC Completed SAs Current/Max/Total                     = 0/0/0
IKEv2 - VPN Sessions Total/RAPs/CAPs/Master-Local/Redun/Cluster   = 0/0/0/0/0/0
IKEv2 - DPD Initiate Reqs-Sent/Re-Sent/Replies-Rcvd/Dropped       = 0/0/0/0
IKEv2 - DPD Responder Reqs-Rcvd/Reqs-Dropped/Replies-Sent         = 0/0/0
IKEv2 - DPD peers detected as Dead                                = 0
IKEv2 - Timers Current/Max/Total                     = 2/2/2
IKEv2 - Hash-table        Add:0   Free(attempt:0  good:0  nobuck:0)
IKEv2 - IKE_SA hash-table Alloc/Free                      =   0/0
IKEv2 - IPSEC_SA hash-table Alloc/Free                      =   0/0
IKEv2 - IKE_SA deletions   Alloc-Fail=Delete/Idle/Duplicate =   0=0/0/0
IKEv2 - IKE_SA deletions   UnAuthenticated In/Out/InitFail = 0/0/0
IKEv2 - IKE_SA deletions   Expired/Child/NoExch/Rekey = 0/0/0/0
IKEv2 - IKE_SA deletions   Our-Deletion/Peer-Deletion = 0/0
IKEv2 - IKE_SA deletions   Pending Auth/UDB/CertMgr/Incomplete = 0/0/0/0
IKEv2 - IKE_SA deletions   Fail Rekey/NewSa/OldSa/IncompleteSA = 0/0/0/0
IKEv2 - IKE_SA deletions   UnAuth/Update/Event/Init/Contact = 0/0/0/0/0

show crypto-local ipsec-map

show crypto-local pki CRL


CRLs
----
Name            Original Filename  Reference Count  Expired
--------------  -----------------  ---------------  -------

show crypto-local pki TrustedCA


Certificates
------------
Name            Original Filename  Reference Count  Expired
--------------  -----------------  ---------------  -------

show crypto-local pki ServerCert


Certificates
------------
Name            Original Filename  Reference Count  Expired
--------------  -----------------  ---------------  -------

show datapath bridge counters


Datapath Bridge Table Statistics
--------------------------------
Current Entries      75
High Water Mark      83
Maximum Entries      65535
Total Entries        1694
Allocation Failures  0
Max link length      1

show datapath bridge table


Datapath Bridge Table Entries
-----------------------------
Flags: P - Permanent, D - Deny, R - Route, M - Mobile, X - Xsec, A - Auth
       T - Temporary, N - No aging
      MAC          VLAN  Assigned VLAN  Destination  Flags
-----------------  ----  -------------  -----------  -----
00:0B:86:95:04:B7  1     1              local        P
00:0B:86:00:00:00  1     1              local        P
00:0C:29:60:A1:85  1     1              0/0/0        N
00:0B:86:95:04:B7  300   300            local        P
70:58:12:25:E9:82  1     1              0/0/0        N
00:0B:86:00:00:00  300   300            local        P
00:0B:86:CF:95:94  1     1              0/0/1        N
28:92:4A:2B:FA:F7  1     1              0/0/0        N
00:0B:86:60:1C:4A  1     1              0/0/0        N
00:0C:29:BC:35:79  1     1              0/0/0        N
00:E0:DB:0B:47:38  1     1              0/0/0        N
00:24:B2:57:2C:78  1     1              0/0/0        N
00:E0:DB:0B:FA:A5  1     1              0/0/0        N
00:20:DA:00:70:04  300   300            local        P
00:0C:29:C4:81:BE  1     1              0/0/0        N
00:0C:29:10:06:3B  1     1              0/0/0        N
14:7D:C5:C8:64:69  1     1              0/0/1        N
00:10:23:F0:15:B2  1     1              0/0/0        N
34:F6:2D:51:AF:18  1     1              0/0/0        N
D0:67:E5:C0:82:5A  1     1              0/0/0        N
08:00:46:DA:74:63  1     1              0/0/0        N
00:0C:29:3D:15:C9  1     1              0/0/0        N
01:00:0C:CC:CC:CC  1     1              local        P
01:00:0C:CC:CC:CD  1     1              local        P
01:80:C2:00:00:00  1     1              local        P
01:80:C2:00:00:02  1     1              local        P
00:0C:29:16:EF:49  1     1              0/0/0        N
01:00:0C:CC:CC:CC  300   300            local        P
01:00:0C:CC:CC:CD  300   300            local        P
01:80:C2:00:00:00  300   300            local        P
01:80:C2:00:00:02  300   300            local        P
08:11:96:8A:54:6C  1     1              0/0/0        N
D8:C7:C8:C4:40:67  1     1              0/0/3        N
00:0F:E5:02:35:CB  1     1              0/0/0        N
F8:BC:12:E0:BA:B1  1     1              0/0/0        N
00:0D:0B:E6:D9:1A  1     1              0/0/0        N
00:0B:86:6C:D5:C0  1     1              0/0/0        N
00:0C:29:07:7F:11  1     1              0/0/0        N
28:D2:44:60:36:B9  1     1              0/0/0        N
00:0C:29:51:F2:EE  1     1              0/0/0        N
00:00:5E:00:01:01  1     1              0/0/0        N
00:1F:FE:A7:1B:40  1     1              0/0/0        N
00:0C:29:42:43:EA  1     1              0/0/0        N
00:0C:29:46:C2:D0  1     1              0/0/0        N
6C:F3:7F:C6:7E:A6  1     1              0/0/0        N
EC:A8:6B:F1:E9:C8  1     1              0/0/0        N
F0:DE:F1:72:78:E0  300   1              0/0/5        PAN
00:15:5D:06:A9:0E  1     1              0/0/0        N
00:15:5D:06:AB:01  1     1              0/0/0        N
00:0B:86:6E:70:44  1     1              0/0/0        N
00:0B:86:6E:70:2C  1     1              0/0/0        N
00:0B:86:01:01:00  4095  4095           cpu-1        P
00:0B:86:01:01:01  4095  4095           cpu-1        P
F0:DE:F1:72:78:E0  1     1              0/0/5        AN
00:0B:86:01:00:00  4095  4095           cpu-0        P
00:0B:86:01:00:01  4095  4095           cpu-0        P
00:0B:86:01:03:00  4095  4095           cpu-3        P
00:0B:86:01:03:01  4095  4095           cpu-3        P
00:0C:29:26:52:1F  1     1              0/0/0        N
D8:C7:C8:C8:EB:E8  1     1              0/0/4        N
00:0C:29:79:55:6A  1     1              0/0/0        N
00:0B:86:01:05:00  4095  4095           cpu-5        P
00:0B:86:01:05:01  4095  4095           cpu-5        P
00:02:2A:E2:57:60  1     1              0/0/0        N
00:0B:86:01:04:00  4095  4095           cpu-4        P
00:0B:86:01:04:01  4095  4095           cpu-4        P
00:0B:86:01:07:00  4095  4095           cpu-7        P
00:0B:86:01:07:01  4095  4095           cpu-7        P
00:0B:86:01:06:00  4095  4095           cpu-6        P
00:0B:86:01:06:01  4095  4095           cpu-6        P

show datapath bwm table


Datapath Bandwidth Management Table Entries
-------------------------------------------
Contract Types :
   0 - CP Dos 1 - Configured contracts 2 - Internal contracts
-----------------------------------------------
Flags: Q - No drop, P - No shape(Only Policed),
       T - Auto tuned
---  --------  ---------  ----------  -----------  -----------------
     Cont                       Avail   Queued/Pkts
Type  Id   Bits/sec  Policed    Bytes    Bytes      Flags
---- ---- --------- ---------- ------- ------------ -----
0    1         1024          0     128       0/128  P
0    2         1024          0     128       0/128  P
0    3         8000          0     999       0/1000 P
0    4         1024          0     128       0/128  P
0    5          224          0      21       0/21   P
0    6          224          0      21       0/21   P
0    7          512          0      64       0/64   P
0    8         1024          0     128       0/128  P
2    1         8192          0   12800       0/800  P

show datapath crypto counters


Datapath Crypto Statistics
--------------------------
Crypto Accelerator         Present
Crypto Cores In Use        1
Crypto Cores Total         4
Crypto Requests Total      20
Crypto Requests Queued     0
Crypto Requests Failed     0
Crypto Timeouts            0
Crypto NoCoreFree          0
Crypto BadNPlus            0
Crypto SendNPlusFailed     0
IPSec Encryption Failures  0
IPSec Decryption Failures  0
IPSec Decryption Loops     0
IPSec Decryption BufFail   0
IPSec Decr SPI(client) ERR 0
IPSec Decrypt SA Not Ready 0
IPSec Frag Failures        0
IPSec Bad Pad Length       0
IPSec Invalid TCP Index    0
IPSec Invalid Length       0
IPSec Invalid Head-Room    0
IPSec Invalid Tail-Romm    0
IPSec Invalid Protocol     0
PPTP Encryption Failures   0
PPTP Decryption Failures   0
WEP Encryption Failures    0
WEP Decryption Failures    0
WEP No Key (not serious)   0
TKIP Encryptions           0,0,0,0
TKIP Encryption Failures   0
TKIP Decryptions           0,0,0,0
TKIP Decryption Failures   0
TKIP MIC Failures   0
TKIP Decrypt Bad Counter   0,0,0,0
TKIP P1Key Not Ready       0
TKIP Serialized            0
TKIP Drops                 0
AESCCM Encryption Failures 0
AESCCM Decryption Failures 0
AESCCM Serialized          0
AESCCM Drops               0
AESGCM Wifi Encryption Failures 0
AESGCM Wifi Decryption Failures 0
AESGCM Wifi Serialized     0
AESGCM Wifi Drops          0
AESGCM GCM SUBKEY H HW Fails      0
AESGCM GCM SUBKEY H Wifi Set Fails  0
AESGCM GCM SUBKEY H IPSec Set Fails 0
WEP CRC Entries Used       0
WEP CRC Alloc Failures     0
WEP CRC Sending            0
WEP CRC Sent               0
WEP CRC Bad Send           0
WEP CRC Unknown            0
Max Crypto HW Queues       0
Crypto HW Queues Used      0
Crypto HW Queue Alloc Fail 0
XSEC Encryption Failures   0
XSEC Decryption Failures   0
DOT1X Term Buffers         256
DOT1X Term Buffers Free    256
DOT1X Term Failures        0
DOT1X Term NAKs            0
DOT1X Term Resends         0
DOT1X Term Succeeded       0
DOT1X Bad Certificates     0
L2TP Hellos Sent           0
L2TP Hello Timeouts        0
IKE Rate                   0
AESCCM Encryptions              0,0,0,0
AESCCM Decryptions              0,0,0,0
AESCCM Decrypt Bad Counter      0,0,0,0
AESGCM Encryptions              0,0,0,0
AESGCM Decryptions              0,0,0,0
AESGCM Wifi Decrypt Bad Counter 0,0,0,0

show datapath debug dma counters


Datapath DMA Statistics
-----------------------
Queue  CP Full  NP Full
-----------------------
0            0        0
1            0        0
2            0        0
3            0        0

show datapath debug trace-buffer


Datapath Trace Buffer Entries:
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945b1c) 0x0        0x10        0xad70101  0xc29bc    0x35790001 0x10
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  8f0234) 0x0        0x10        0xad70101  0x10       0x10       0x0
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945d50) 0x0        0x10        0xad701ff  0xffffffff 0xad701ff  0x42
    NULL/RetAddr(  945b1c) 0x0        0x10        0xad7014d  0x811968a  0x546c0001 0x10

show datapath frame counters


Datapath Frame Statistics
-------------------------
Allocated Frames              1574
IP Datagrams Fragmented       0
IP Fragmentation Failures     0
IP Reassembled Datagrams      0
IP Reassembly overlaps        0
IP Reassembly Failures        0
Unknown Unicast               157
Invalid IP headers Received   0
IPv6 Datagrams Fragmented     0
IPv6 Fragmentation Failures   0
IPv6 Reassembled Datagrams    0
IPv6 Reassembly overlaps      0
IPv6 Reassembly Failures      0
Invalid IPv6 headers Received 0
Too many IPv6 ext. headers    0
BPDUs Received                32363
LAPDUs Received               0
LLDPDUs Received              10640
CDPDUs Received               3267
Runts Received                0
WIFI Frames Re-Assembled      0
WIFI Re-Assembly Failures     0
WIFI AMSDU                    0
WIFI AMSDU De-aggregated      0
WIFI AMSDU De-agg Failures    0
WIFI Jumbo Denied             0
xSec Frames Re-Assembled      0
xSec Re-Assembly Failures     0
Station Not Data Ready        0
Association Throttle          0
CP Policed Frames             0
ARP Request Spoofs            0
ARP Reply Spoofs              0
Gratuitous ARP Spoofs         0
Frame Denied IPIP Loop        0
IKE Throttle                  0
RTP Sampling                  0
EOP zero frames               0
IP spoofs                     0
No tailroom DDMO Drops        0
Frame Length Failures         0
Invalid ingress frames        0
Invalid opcode                0
Invalid Acl                   0
Invalid Port                  0
Invalid Slot                  0
Heartbeats dropped by FP      0
Heartbeats sent to SP         0
                SLOT 0       SLOT 1       SLOT 2       SLOT 3       SLOT 4       SLOT 5       SLOT 6       SLOT 7
-------------------------------------------------------------
Rx Frames       84195        0            0            0            0            0            0            0
Rx Failures     0            0            0            0            0            0            0            0
Rx Underflows   0            0            0            0            0            0            0            0
Rx Overflows    0            0            0            0            0            0            0            0
Tx Frames       339391       0            0            0            0            0            0            0
Tx Failures     0            0            0            0            0            0            0            0
Tx Underflows   0            0            0            0            0            0            0            0
Tx Overflows    0            0            0            0            0            0            0            0
Descr Failures  0            0            0            0            0            0            0            0
Alloc Failures  0            0            0            0            0            0            0            0
Dot1d Discards  0            0            0            0            0            0            0            0
Dot1Q Discards  0            0            0            0            0            0            0            0
Denied Frames   14           0            0            0            0            0            0            0
Policed Frames  0            0            0            0            0            0            0            0

show datapath ip-reassembly counters


Datapath IP Reassembly Table Statistics
----+-----------+-----------+-----------+-----------+-----------+
    |Current    |High       |Max        |Total      |Allocation |
Cpu |Entries    |Water-Mark |Entries    |Entries    |Failures   |
----+-----------+-----------+-----------+-----------+-----------+
  4 |0          |0          |511        |0          |0          |
  5 |0          |0          |511        |0          |0          |
  6 |0          |0          |511        |0          |0          |
  7 |0          |0          |511        |0          |0          |

show datapath lag table


Datapath Trunk (Port-Channel) Table
-----------------------------------
Port-Channel  Active Members
------------  --------------

show datapath maintenance counters


Datapath Maintenance Statistics
-------------------------------
Buffer Underruns       1
BWM Buffer Exhaustion  0
Buffer Alloc Failure   0
Tunnel Bufs cleaned    0
Station Bufs cleaned   0
Tun Buf delayed frees  0
Stn Buf delayed frees  0
Tunnel Route Failures  0
ECC Errors             0
PCI Errors             0
Length Errors          0
Memory Size            0 MB
Memory Speed           0 MHz

show datapath message-queue counters


Datapath Message Queue Statistics
---------------------------------


Cpu-->          4                5                6                7
Opcode   HighPrio LowPrio  HighPrio LowPrio  HighPrio LowPrio  HighPrio LowPrio
-------------------------------------------------------------------------------
RAW/FREE                   000000cd
BRIDGE   00003aa7          00001375          000013c7          0000136b
ROUTE    00000007          0000014f
SESSION  00001815          00001415
FORWARD  0000a811 0001ffc0 00000e33 0000abcb 00000e3e 0000aa19 00000e4d 0000a985
HELLO             0001fa34          0000fd1a          0000fd1a          0000fd1a
APP      00000039
ALLOC             000002a6          000000e0          000000ea          000000dc
ACL               00000035
ACE               00000231
USER              00000090
VLAN              00000041
PORT              0000003c
LAG               00000040
BPDU              00007e6b
NAT               00000003
USER_TMO          00000002
CDPDU    00000cc3
STATS             0000000f
VPN_CLEA          00000001
AUTH              00000004
CPDNS    00000006
FIREWALL          0000003b
GETNEXT           00000011
AUTH_L2  0000005f
IGMP     0000002a
PIM               0000008c
SERVICE           00000001
STATS2            0000fd1a
8021XTER          0000000a
RAND     00000002
IKEDPD            00000001
SRC_BRID 0000074b          0000074b
HOST_DOM 00000002
STP               00000003
WIRED_AU          00000002
IPV6              00000002
ROUTE6                     000001df
STK_INFO          0000000b
LLDP     00002990
UNREG_MC 0000001c          0000001c
INTF_WIR          0000000e
RESET             00000001
BULK_MSG          00000c96
SET_EPOC 00000001
QOS               00000001

show datapath nat table


Datapath NAT Table Entries
--------------------------
Pool     SIP Start         SIP End           DIP
----  ---------------  ---------------  ---------------
0     10.215.1.27      10.215.1.27      10.215.1.27

show datapath port


Datapath Port Table Entries
---------------------------
Flags: Q - trunk,  T - trusted, B - blocked,  L - LAG
       M - mux, X - xSec
Port  PVID  Ingress ACL  Egress ACL  Session ACL  Flags
----  ----  -----------  ----------  -----------  -----
0/0/0        1     0            0           0            T
0/0/1        1     0            0           0            T
0/0/2        1     0            0           0            T
0/0/3        1     0            0           0            T
0/0/4        1     0            0           0            T
0/0/5        300   0            0           0
0/0/6        300   0            0           0            T
0/0/7        300   0            0           0            T
0/0/8        300   0            0           0            T
0/0/9        300   0            0           0            T
0/0/10       1     0            0           0            T
0/0/11       1     0            0           0            T
0/1/0        1     0            0           0            T
cpu-0        4095  0            0           0            QT
cpu-1        4095  0            0           0            QT
cpu-2        4095  0            0           0            QT
cpu-3        4095  0            0           0            QT
cpu-4        4095  0            0           0            QT
cpu-5        4095  0            0           0            QT
cpu-6        4095  0            0           0            QT
cpu-7        4095  0            0           0            QT
Port Entries: 21

show datapath route counters


Datapath Route Table Statistics
-------------------------------
Current Entries      3
High Water Mark      3
Maximum Entries      2047
Total Entries        3
Allocation Failures  0
Max link length      0
DHCP RC refresh     0

show datapath route verbose


Route Table Entries
-------------------
Flags: L - Local, P - Permanent,  T - Tunnel, I - IPsec, M - Mobile, A - ARP, D - Drop
Route VerNum Index [RTV RTI]
       IP             Mask           Gateway       Cost  VLAN  Flags    RTV  RTI
---------------  ---------------  ---------------  ----  ----  -------  ---------
0.0.0.0          0.0.0.0          10.215.1.254        0     1  P        4   3
10.215.1.0       255.255.255.0    10.215.1.27         0     1  LP       3   2
10.215.1.255     255.255.255.255  10.215.1.255        0     0  PD       2   1

show datapath route-cache counters


Datapath Route Cache Statistics
-------------------------------
Current Entries      6
High Water Mark      7
Maximum Entries      32767
Total Entries        9
Allocation Failures  0
Max link length      1
Stale Regular/Perm   0/0
Stale Refreshed (Update/Delete) 0/0
DHCP RC refresh     0

show datapath route-cache verbose


Route Cache Entries
-------------------
Flags: L - local, P - Permanent,  T - Tunnel, I - IPsec, M - Mobile, A - ARP, D - Drop
R - Routed across vlan
Parent Route: VerNum Index [PRTV PRTI]
       IP              MAC             VLAN      Flags    PRTV PRTI
---------------  -----------------  -----------  -------  ---------
10.215.1.254     00:0B:86:60:1C:4A            1  A        3    2
10.215.1.77      08:11:96:8A:54:6C            1  A        3    2
10.215.1.22      F0:DE:F1:72:78:E0            1  A        3    2
10.215.1.27      00:0B:86:95:04:B7            1  LP       0    0

show datapath session counters


Datapath Session Table Statistics
---------------------------------
Current Entries      22
High Water Mark      33
Maximum Entries      65535
Total Entries        8667
Allocation Failures  0
Duplicate Entries    0
Cross linked Entries 0
No Reverse Entries   0
Max link length      1
Aged Entries         8477
Stale Entries        0

show datapath session table


Datapath Session Table Entries
------------------------------
Flags: F - fast age, S - src NAT, N - dest NAT
       D - deny, R - redirect, Y - no syn
       H - high prio, P - set prio, T - set ToS
       C - client, M - mirror, V - VOIP
       Q - Real-Time Quality analysis
       I - Deep inspect, U - Locally destined
       E - Media Deep Inspect, G - media signal
       u - User Index
 Source IP/     Destination IP  Prot SPort DPort  Cntr Prio ToS Age Destination TAge UsrIdx UsrVer Flags
Destination MAC
--------------  --------------  ---- ----- -----  ---- ---- --- --- ----------- ---- ------ ------ -----
10.215.1.255    10.215.1.73     17   137   54432  0/0     0 0   0   0/0/0       5    0      0      FY
10.215.1.100    10.215.1.255    17   138   138    0/0     0 0   0   0/0/0       6    0      0      FC
10.215.1.73     10.215.1.255    17   138   138    0/0     0 0   0   0/0/0       5    0      0      FC
10.215.1.73     10.215.1.255    17   137   137    0/0     0 0   0   0/0/0       6    0      0      FC
10.215.1.255    10.215.1.100    17   138   138    0/0     0 0   0   0/0/0       6    0      0      FY
10.215.1.255    10.215.1.73     17   137   137    0/0     0 0   0   0/0/0       6    0      0      FY
10.215.1.255    10.215.1.73     17   138   138    0/0     0 0   0   0/0/0       5    0      0      FY
10.215.1.255    10.215.1.73     17   137   51243  0/0     0 0   1   0/0/0       5    0      0      FY
255.255.255.255 10.215.1.77     17   1947  62492  0/0     0 0   1   0/0/0       5    0      0      FY
10.215.1.73     10.215.1.255    17   60877 137    0/0     0 0   1   0/0/0       6    0      0      FC
10.215.1.77     10.215.1.27     6    60552 22     0/0     0 0   0   0/0/0       12a  0      0      C
10.215.1.73     10.215.1.255    17   59472 137    0/0     0 0   1   0/0/0       5    0      0      FC
54.186.108.51   10.215.1.27     6    443   34672  0/0     0 0   1   local       545  0      0
10.215.1.255    10.215.1.73     17   137   65224  0/0     0 0   0   0/0/0       5    0      0      FY
10.215.1.73     10.215.1.255    17   65224 137    0/0     0 0   0   0/0/0       5    0      0      FC
10.215.1.27     54.186.108.51   6    34672 443    0/0     0 0   0   local       545  4      4      C
10.215.1.73     10.215.1.255    17   51243 137    0/0     0 0   0   0/0/0       5    0      0      FC
10.215.1.73     10.215.1.255    17   54432 137    0/0     0 0   0   0/0/0       5    0      0      FC
10.215.1.77     255.255.255.255 17   62492 1947   0/0     0 0   0   0/0/0       5    0      0      FC
10.215.1.255    10.215.1.73     17   137   59472  0/0     0 0   0   0/0/0       5    0      0      FY
10.215.1.255    10.215.1.73     17   137   60877  0/0     0 0   0   0/0/0       6    0      0      FY
10.215.1.27     10.215.1.77     6    22    60552  0/0     0 0   0   0/0/0       12a  4      4

show datapath station table


Datapath Station Table Entries
------------------------------
Flags: W - WEP, T - TKIP, A - AESCCM, M - WMM N - .11n client
       S - AMSDU, G - AESGCM
       MAC              BSSID       VLAN Bad Decrypts Bad Encrypts Cpu Qsz        RSN cap Aid Flags
----------------- ----------------- ---- ------------ ------------ --- ---------- ------- -----

show datapath tunnel counters


Datapath Tunnel Table Statistics
--------------------------------
Current Entries      0
Pending Deletes      0
High Water Mark      0
Maximum Entries      8191
Total Entries        0
Allocation Failures  0
Max link length      0

show datapath tunnel table


Datapath Tunnel Table Entries
-----------------------------
Flags: E - Ether encap,  I - Wi-Fi encap,  R - Wired tunnel,  F - IP fragment OK
       W - WEP,  K - TKIP,  A - AESCCM,  G - AESGCM,  M - no mcast src filtering
       S - Single encrypt,  U - Untagged,  X - Tunneled node,  1(cert-id) - 802.1X Term-PEAP
       2(cert-id) - 802.1X Term-TLS,  T - Trusted,  L - No looping, d - Drop Bcast/Mcast,
       D - Decrypt tunnel,  a - Reduce ARP packets in the air, e - EAPOL only
       C - Prohibit new calls, P - Permanent, m - Convert multicast
       n - Don't convert IPv6 Mcast RA to Ucast, s - Split tunnel
 #       Source       Destination    Prt  Type  MTU   VLAN       Acls                BSSID          Decaps     Encaps   Heartbeats Cpu QSz Flags
---  --------------  --------------  ---  ----  ----  ---- -------------------  ----------------- ---------- ---------- ---------- --- --- -----

show datapath user counters


Datapath User Table Statistics
------------------------------
Current Entries(L2)           2
Current Entries(L3-v4)        2
Current Entries(L3-v6)        0
Total Current Entries(L2,L3)  4
Pending Deletes      0
High Water Mark      4
Maximum Entries               8191
Total Entries        6
Allocation Failures  0
Max link length               1
Aggregated User Entry Statistics
--------------------------------
Current Entries               2
High Water Mark               2
Alloc Failures                0
Maximum Entries               3071
Total Entries                 3
Invalid/Denied V4 Users       201
Invalid/Denied V6 Users       0
Force Delete(IPIP)            0
Mac Mismatch                  0

show datapath user table


Datapath User Table Entries
---------------------------
Flags: P - Permanent, W - WEP, T- TKIP, A - AESCCM, G - AESGCM, V - ProxyArp to/for MN(Visitor),
       N - VPN, L - local, Y - Any IP user, R - Routed user, M - Media Capable,
       S - Src NAT with VLAN IP, E - L2 Enforced, F - IPIP Force Delete, O - VOIP user
       IP              MAC           ACLs    Contract   Location  Age    Sessions   Vernum Flags
---------------  -----------------  -------  ---------  --------  -----  ---------  ------ -----
0.0.0.0          00:0B:86:95:04:B7  2701/0      0/0     0         0        1/65535  1      PLE
0.0.0.0          F0:DE:F1:72:78:E0    36/0      0/0     0         0        0/65535  5      E
10.215.1.22      F0:DE:F1:72:78:E0    36/0      0/0     0         167      0/65535  6      E
10.215.1.27      00:0B:86:95:04:B7  2701/0      0/0     0         11       1/65535  4      PLE

show datapath utilization


Datapath Network Processor Utilization
------+---------+---------+----------+
      | Cpu utilization during past  |
  Cpu |  1 Sec     4 Secs    64 Secs |
------+---------+---------+----------+
    4 |      0% |      0% |       0% |
    5 |      0% |      0% |       0% |
    6 |      0% |      0% |       0% |
    7 |      0% |      0% |       0% |

show datapath vlan table


Datapath VLAN Table Entries
---------------------------
Flags: N - Nat Inside, M - Route Multicast, R - Routing
       S - Snoop MLD, G - Snoop IGMP, P - Proxy IGMP
       B - BCMC Optimization, A - Proxy ARP, U - Suppress ARP
       1(cert-id) - 8021X Term-PEAP, 2(cert-id) - 8021X Term-TLS
VLAN  Flags         Ports
----  ------------  -----
1     RGU        0/0/0, 0/0/1, 0/0/2, 0/0/3, 0/0/4, 0/0/5, 0/0/10, 0/0/11
1     RGU        0/1/0
300   RU         0/0/5, 0/0/6, 0/0/7, 0/0/8, 0/0/9
4095  RU         cpu-0, cpu-1, cpu-2, cpu-3, cpu-4, cpu-5, cpu-6, cpu-7
4095  RU         cpu-0, cpu-1, cpu-2, cpu-3, cpu-4, cpu-5, cpu-6, cpu-7

show datapath vlan-mcast table


Datapath VLAN Multicast Entries
--------------------------------
VLAN  Destinations
----  ------------
1     0/0/1, 0/0/3, 0/0/4, 0/0/5
300   0/0/5, 0/0/6, 0/0/7, 0/0/8, 0/0/9

show datapath ip-mcast group


Datapath IP Multicast Entries
-----------------------------
    Source            Group
---------------  ---------------
              *  239.255.255.250

show datapath ip-mcast destination

show datapath debug eap counters


Datapath EAP termination Statistics
-----------------------------------
Memory used (bytes)                      = 21664
Memory allocs                            = 12369
Memory frees                             = 12315
Memory alloc failures                    = 0
EAP sessions created                     = 0
EAP sessions deleted                     = 0
Minimum EAP session time (msec)          = 0
Average EAP session time (msec)          = 0
Maximum EAP session time (msec)          = 0
Current EAP sessions                     = 0
Identity requests sent                   = 0
Certs sent to auth                       = 0
Cert responses received from auth        = 0
sbeth allocs                             = 0
sbeth alloc errors                       = 0
Cert verify successes                    = 0
Cert verify failures                     = 0
HW keyexchange requests sent             = 0
HW keyexchange responses received        = 0
Invalid station after HW response        = 0
Invalid stations                         = 0
Station lookup failures                  = 0
TLS user query requests sent to auth     = 0
TLS user query responses from auth       = 0
Messages with invalid length             = 0
MPPE keys sent to auth                   = 0
EAP successes sent to auth               = 0
MSCHAPv2 requests sent to auth           = 0
MSCHAPv2 responses from auth             = 0
MSCHAPv2 auth successes                  = 0
MSCHAPv2 auth failures                   = 0
MSCHAPv2 auth failure retries            = 0
GTC requests sent to auth                = 0
GTC responses from auth                  = 0
GTC auth successes                       = 0
GTC auth failures                        = 0
GTC auth next pin mode                   = 0
Total PEAP packets transmitted           = 0
PEAP Identity responses                  = 0
PEAP NAKs                                = 0
Identity responses                       = 0
NAKs                                     = 0
Total EAP successes                      = 0
Total EAP failures                       = 0
Retransmits                              = 0
Peer timeouts                            = 0
Auth timeouts                            = 0
Retransmit timeouts                      = 0
Restart requests                         = 0
EAP Indication errors                    = 0
Suite-B invalid public key curves        = 0
Suite-B invalid TLS versions             = 0
Suite-B invalid prime curves             = 0
Suite-B invalid signature algos          = 0
Suite-B invalid ciphers                  = 0

show alarms


No Active Alarms in the System

show boot history

show boot member all


Member-id: 0
------------
Config File: default.cfg
Boot Partition: PARTITION 0


show crashinfo member all


Member-id: 0
------------
No crashes found on this machine.


show image version member all


Member-id: 0
------------
----------------------------------
Partition               : 0:0 (/dev/ud1) **Default boot**
Software Version        : ArubaOS 7.3.2.2 (Digitally Signed - Production Build)
Build number            : 44718
Label                   : 44718
Built on                : Wed Jul 9 11:48:15 PDT 2014
----------------------------------
Partition               : 0:1 (/dev/ud2)
Software Version        : ArubaOS 7.2.3.0 (Digitally Signed - Production Build)
Build number            : 39991
Label                   : 39991
Built on                : Fri Sep 20 17:18:00 PDT 2013


show version member all


Member-id: 0
------------
Aruba Operating System Software.
ArubaOS (MODEL: ArubaS1500-12P), Version 7.3.2.2
Website: http://www.arubanetworks.com
Copyright (c) 2002-2014, Aruba Networks, Inc.
Compiled on 2014-07-09 at 11:48:15 PDT (build 44718) by p4build
ROM: System Bootstrap, Version CPBoot 1.0.42.0 (build 39779)
Built: 2013-09-09 07:19:55
Built by: p4build@re_client_39779
Switch uptime is 18 hours 12 minutes 24 seconds
Reboot Cause: User reboot.
Processor XLS 208 (revision A1) with 1023M bytes of memory.
959M bytes of System flash


show memory member all


Member-id: 0
------------
Memory (Kb): total: 761848, used: 363208, free: 398640


show logging level verbose


LOGGING LEVELS
--------------
Facility  Level     Sub Category  Process
--------  -----     ------------  -------
network   warnings  N/A           N/A
security  warnings  N/A           N/A
system    warnings  N/A           N/A
user      warnings  N/A           N/A

show loginsessions


Session Table
-------------
ID  User Name  User Role  Connection From  Idle Time  Session Time
--  ---------  ---------  ---------------  ---------  ------------
2   admin      root       10.215.1.77      00:00:10   00:05:01

show storage member all


Member-id: 0
------------
Filesystem                Size      Used Available Use% Mounted on
none                    300.0M      3.0M    297.0M   1% /tmp
/dev/ud3                755.6M     17.4M    699.9M   2% /flash



show cpuload member all


Member-id: 0
------------
user 3.5%, system 2.0%, idle 94.5%


show cpuload current member all


Member-id: 0
------------
Mem: 368980K used, 392868K free, 0K shrd, 13828K buff, 168956K cached
Load average: 0.36 0.14 0.04  (Status: S=sleeping R=running, W=waiting)
  PID USER     STATUS   RSS  PPID %CPU %MEM COMMAND
31164 root     R        808 31162  2.5  0.1 busybox
 1423 root     S      30920  1346  0.0  4.0 cfgm
 1388 root     S      30244  1346  0.0  3.9 fpcli
 1549 root     S      29508  1346  0.0  3.8 arci-cli-helper
 1602 root     S      23364  1600  0.0  3.0 central-cfghelp
 1573 root     S      15532  1346  0.0  2.0 auth
 1460 root     S      10800  1346  0.0  1.4 dpa
 1590 root     S       9064  1346  0.0  1.1 l2m
 1587 root     S       9036  1346  0.0  1.1 cmicm
 1593 root     S       7600  1346  0.0  0.9 l3m
 1571 root     S       7348  1346  0.0  0.9 isakmpd
 1567 root     S       7136  1346  0.0  0.9 im
 1461 root     S       7076  1346  0.0  0.9 stackmgr
 1600 root     S       7004  1346  0.0  0.9 central-agent
 1631 root     S       7004  1630  0.0  0.9 central-agent
 1630 root     S       7004  1600  0.0  0.9 central-agent
 1459 root     S       6964  1346  0.0  0.9 cmica
 3400 root     S       6052  1582  0.0  0.7 httpd
 1572 root     S       5960  1346  0.0  0.7 profmgr
 1592 root     S       5808  1346  0.0  0.7 qosmgr
 3313 root     S       5768  1578  0.0  0.7 ntpd


show audit-trail

Aug 27 03:06:57  cli[1388]: SYSTEM: timezone clock changed from Wed Aug 27 03:06:57 PST 2014  to Wed Aug 27 03:06:57 PST 2014
Aug 27 03:11:46  cli[1388]: USER: admin has logged in from 10.215.1.77.
Aug 27 03:27:57  cli[1388]: USER: admin connected from 10.215.1.77 has logged out.
Aug 27 21:11:50  cli[1388]: USER: admin has logged in from 10.215.1.77.

show profile-errors


Invalid Profiles
----------------
Profile  Error
-------  -----

show rights


RoleTable
---------
Name                        ACL  ACL List                                                                                             Type
----                        ---  --------                                                                                             ----
authenticated               6    allowall-stateless/                                                                                  User
denyall                     19   denyall-stateless/                                                                                   User
denydhcp                    24   denydhcp/                                                                                            User
guest                       4    http-acl-stateless/,https-acl-stateless/,dhcp-acl-stateless/,icmp-acl-stateless/,dns-acl-stateless/  User
logon                       1    logon-control-stateless/                                                                             User
preauth                     17                                                                                                        User
sys-ap-role                 8    sys-control/,sys-control-stateless/,sys-ap-acl/,sys-ap-acl-stateless/                                System (not editable)
tpl-CPPM-Pub-mac-auth-role  35   tpl-CPPM-Pub-mac-auth-acl/                                                                           User

show interface statistics


GE0/0/0
-------
Last update of counters:        0d 00:00:05 ago
Last clearing of counters:      0d 18:09:42 ago

Received Statistics:
    647499 frames, 67143649 octets
    28 pps, 14.638 Kbps
    72348 unicast, 379429 multicast, 195722 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    135385 frames, 18110119 octets
    37 pps, 152.408 Kbps
    62552 unicast, 2382 multicast, 70451 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
296351 64 octet, 416670 65-127 octet, 29803 128-255 octet, 16717 256-511 octet, 10483 512-1023 octet, 12860 1024-max octet


GE0/0/1
-------
Last update of counters:        0d 00:00:05 ago
Last clearing of counters:      0d 18:09:42 ago

Received Statistics:
    18751 frames, 4120411 octets
    0 pps, 0 bps
    16752 unicast, 1976 multicast, 23 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    308046 frames, 27473498 octets
    4 pps, 2.522 Kbps
    18926 unicast, 111420 multicast, 177700 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
244269 64 octet, 54614 65-127 octet, 18066 128-255 octet, 5280 256-511 octet, 2433 512-1023 octet, 2135 1024-max octet


GE0/0/2
-------
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago

Received Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
0 64 octet, 0 65-127 octet, 0 128-255 octet, 0 256-511 octet, 0 512-1023 octet, 0 1024-max octet


GE0/0/3
-------
Last update of counters:        0d 00:00:05 ago
Last clearing of counters:      0d 18:09:42 ago

Received Statistics:
    5877 frames, 1514902 octets
    0 pps, 0 bps
    3635 unicast, 2191 multicast, 51 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    297308 frames, 23984703 octets
    4 pps, 2.522 Kbps
    8181 unicast, 111433 multicast, 177694 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
234969 64 octet, 46962 65-127 octet, 15807 128-255 octet, 4025 256-511 octet, 1357 512-1023 octet, 65 1024-max octet


GE0/0/4
-------
Last update of counters:        0d 00:00:05 ago
Last clearing of counters:      0d 18:09:42 ago

Received Statistics:
    75150 frames, 5893928 octets
    1 pps, 512 bps
    3619 unicast, 2169 multicast, 69362 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    228022 frames, 19550770 octets
    3 pps, 2.010 Kbps
    8190 unicast, 111447 multicast, 108385 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
235001 64 octet, 46958 65-127 octet, 15783 128-255 octet, 4017 256-511 octet, 1348 512-1023 octet, 65 1024-max octet


GE0/0/5
-------
Last update of counters:        0d 00:00:05 ago
Last clearing of counters:      0d 18:09:42 ago

Received Statistics:
    25665 frames, 5409858 octets
    0 pps, 0 bps
    24191 unicast, 307 multicast, 1167 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    17 drop events

Transmitted Statistics:
    320379 frames, 38544837 octets
    3 pps, 1.537 Kbps
    33714 unicast, 110804 multicast, 175861 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
255623 64 octet, 53487 65-127 octet, 19084 128-255 octet, 5039 256-511 octet, 2266 512-1023 octet, 10545 1024-max octet


GE0/0/6
-------
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago

Received Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
0 64 octet, 0 65-127 octet, 0 128-255 octet, 0 256-511 octet, 0 512-1023 octet, 0 1024-max octet


GE0/0/7
-------
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago

Received Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
0 64 octet, 0 65-127 octet, 0 128-255 octet, 0 256-511 octet, 0 512-1023 octet, 0 1024-max octet


GE0/0/8
-------
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago

Received Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
0 64 octet, 0 65-127 octet, 0 128-255 octet, 0 256-511 octet, 0 512-1023 octet, 0 1024-max octet


GE0/0/9
-------
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago

Received Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
0 64 octet, 0 65-127 octet, 0 128-255 octet, 0 256-511 octet, 0 512-1023 octet, 0 1024-max octet


GE0/0/10
--------
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago

Received Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
0 64 octet, 0 65-127 octet, 0 128-255 octet, 0 256-511 octet, 0 512-1023 octet, 0 1024-max octet


GE0/0/11
--------
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago

Received Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
0 64 octet, 0 65-127 octet, 0 128-255 octet, 0 256-511 octet, 0 512-1023 octet, 0 1024-max octet


GE0/1/0
-------
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago

Received Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
0 64 octet, 0 65-127 octet, 0 128-255 octet, 0 256-511 octet, 0 512-1023 octet, 0 1024-max octet

show interface transceivers


GE0/1/0
-------
Transceiver not present

show interface vlan


VLAN1 is administratively Up, Line protocol is Up
Hardware is CPU Interface, Address is 00:0b:86:95:04:b7
Description: 802.1Q VLAN
Internet address is 10.215.1.27, Netmask is 255.255.255.0
IPV6 link-local address is fe80::b:8600:195:4b7
Global Unicast address(es):
IP address is obtained through DHCP
DHCP data: server 10.215.1.254, router 10.215.1.254, domain arubanetworks.co.jp, DNS 10.215.1.1, lease time(in secs) 86400 state BOUND
Routing interface is enabled, Forwarding mode is enabled
Directed broadcast is disabled, BCMC Optimization disabled
Encapsulation 802, Loopback not set
Interface index: 50331649
MTU 1500 bytes

VLAN300 is administratively Up, Line protocol is Up
Hardware is CPU Interface, Address is 00:0b:86:95:04:b7
Description: 802.1Q VLAN
Internet address is unassigned
IPV6 link-local address is fe80::b:8601:2c95:4b7
Global Unicast address(es):
Routing interface is enabled, Forwarding mode is enabled
Directed broadcast is disabled, BCMC Optimization disabled
Encapsulation 802, Loopback not set
Interface index: 50331948
MTU 1500 bytes


show interface


GE0/0/0
-------
GE0/0/0 is administratively Up, Link is Up, Line protocol is Up
Hardware is Gigabit Ethernet, Interface is GE0/0/0, Address is 00:0b:86:95:04:b8
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Negotiated: duplex (Full), Speed (100 Mbps)
Interface index: 1
MTU 1514 bytes
Link flaps: 0
Flags: Access, Trusted
Link status last changed:       0d 18:09:40 ago
Last update of counters:        0d 00:00:05 ago
Last clearing of counters:      0d 18:09:42 ago
Statistics:
    Received 647499 frames, 67143649 octets
    28 pps, 14.638 Kbps
    72348 unicast, 379429 multicast, 195722 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 135385 frames, 18110119 octets
    37 pps, 152.408 Kbps
    62552 unicast, 2382 multicast, 70451 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
PoE Information:
Administratively Enable, Port status: Off, Power consumption: 0 mW
PSE port status: Off, PD detection in progress


GE0/0/1
-------
GE0/0/1 is administratively Up, Link is Up, Line protocol is Up
Hardware is Gigabit Ethernet, Interface is GE0/0/1, Address is 00:0b:86:95:04:b9
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Negotiated: duplex (Full), Speed (1 Gbps)
Interface index: 2
MTU 1514 bytes
Link flaps: 2
Flags: Access, Trusted
Link status last changed:       0d 18:08:36 ago
Last update of counters:        0d 00:00:05 ago
Last clearing of counters:      0d 18:09:42 ago
Statistics:
    Received 18751 frames, 4120411 octets
    0 pps, 0 bps
    16752 unicast, 1976 multicast, 23 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 308046 frames, 27473498 octets
    4 pps, 2.522 Kbps
    18926 unicast, 111420 multicast, 177700 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
PoE Information:
Administratively Enable, Port status: On, Power consumption: 6500 mW
PSE port status: On


GE0/0/2
-------
GE0/0/2 is administratively Up, Link is Down, Line protocol is Down
Hardware is Gigabit Ethernet, Interface is GE0/0/2, Address is 00:0b:86:95:04:ba
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Auto negotiation in progress
Interface index: 3
MTU 1514 bytes
Link flaps: 0
Flags: Access, Trusted
Link status last changed:       0d 00:00:00 ago
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago
Statistics:
    Received 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
PoE Information:
Administratively Enable, Port status: Off, Power consumption: 0 mW
PSE port status: Off, PD detection in progress


GE0/0/3
-------
GE0/0/3 is administratively Up, Link is Up, Line protocol is Up
Hardware is Gigabit Ethernet, Interface is GE0/0/3, Address is 00:0b:86:95:04:bb
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Negotiated: duplex (Full), Speed (1 Gbps)
Interface index: 4
MTU 1514 bytes
Link flaps: 1
Flags: Access, Trusted
Link status last changed:       0d 18:08:36 ago
Last update of counters:        0d 00:00:05 ago
Last clearing of counters:      0d 18:09:42 ago
Statistics:
    Received 5877 frames, 1514902 octets
    0 pps, 0 bps
    3635 unicast, 2191 multicast, 51 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 297308 frames, 23984703 octets
    4 pps, 2.522 Kbps
    8181 unicast, 111433 multicast, 177694 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
PoE Information:
Administratively Enable, Port status: On, Power consumption: 4500 mW
PSE port status: On


GE0/0/4
-------
GE0/0/4 is administratively Up, Link is Up, Line protocol is Up
Hardware is Gigabit Ethernet, Interface is GE0/0/4, Address is 00:0b:86:95:04:bc
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Negotiated: duplex (Full), Speed (1 Gbps)
Interface index: 5
MTU 1514 bytes
Link flaps: 2
Flags: Access, Trusted
Link status last changed:       0d 18:08:42 ago
Last update of counters:        0d 00:00:05 ago
Last clearing of counters:      0d 18:09:42 ago
Statistics:
    Received 75150 frames, 5893928 octets
    1 pps, 512 bps
    3619 unicast, 2169 multicast, 69362 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 228022 frames, 19550770 octets
    3 pps, 2.010 Kbps
    8190 unicast, 111447 multicast, 108385 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
PoE Information:
Administratively Enable, Port status: On, Power consumption: 4000 mW
PSE port status: On


GE0/0/5
-------
GE0/0/5 is administratively Up, Link is Up, Line protocol is Up
Hardware is Gigabit Ethernet, Interface is GE0/0/5, Address is 00:0b:86:95:04:bd
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Negotiated: duplex (Full), Speed (1 Gbps)
Interface index: 6
MTU 1514 bytes
Link flaps: 0
Flags: Access
Link status last changed:       0d 18:09:37 ago
Last update of counters:        0d 00:00:05 ago
Last clearing of counters:      0d 18:09:42 ago
Statistics:
    Received 25665 frames, 5409858 octets
    0 pps, 0 bps
    24191 unicast, 307 multicast, 1167 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 320379 frames, 38544837 octets
    3 pps, 1.537 Kbps
    33714 unicast, 110804 multicast, 175861 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
PoE Information:
Administratively Enable, Port status: Off, Power consumption: 0 mW
PSE port status: Off, PD detection in progress


GE0/0/6
-------
GE0/0/6 is administratively Up, Link is Down, Line protocol is Down
Hardware is Gigabit Ethernet, Interface is GE0/0/6, Address is 00:0b:86:95:04:be
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Auto negotiation in progress
Interface index: 7
MTU 1514 bytes
Link flaps: 0
Flags: Access, Trusted
Link status last changed:       0d 00:00:00 ago
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago
Statistics:
    Received 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
PoE Information:
Administratively Enable, Port status: Off, Power consumption: 0 mW
PSE port status: Off, PD detection in progress


GE0/0/7
-------
GE0/0/7 is administratively Up, Link is Down, Line protocol is Down
Hardware is Gigabit Ethernet, Interface is GE0/0/7, Address is 00:0b:86:95:04:bf
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Auto negotiation in progress
Interface index: 8
MTU 1514 bytes
Link flaps: 0
Flags: Access, Trusted
Link status last changed:       0d 00:00:00 ago
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago
Statistics:
    Received 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
PoE Information:
Administratively Enable, Port status: Off, Power consumption: 0 mW
PSE port status: Off, PD detection in progress


GE0/0/8
-------
GE0/0/8 is administratively Up, Link is Down, Line protocol is Down
Hardware is Gigabit Ethernet, Interface is GE0/0/8, Address is 00:0b:86:95:04:c0
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Auto negotiation in progress
Interface index: 9
MTU 1514 bytes
Link flaps: 0
Flags: Access, Trusted
Link status last changed:       0d 00:00:00 ago
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago
Statistics:
    Received 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
Interface is not PoE capable


GE0/0/9
-------
GE0/0/9 is administratively Up, Link is Down, Line protocol is Down
Hardware is Gigabit Ethernet, Interface is GE0/0/9, Address is 00:0b:86:95:04:c1
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Auto negotiation in progress
Interface index: 10
MTU 1514 bytes
Link flaps: 0
Flags: Access, Trusted
Link status last changed:       0d 00:00:00 ago
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago
Statistics:
    Received 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
Interface is not PoE capable


GE0/0/10
--------
GE0/0/10 is administratively Up, Link is Down, Line protocol is Down
Hardware is Gigabit Ethernet, Interface is GE0/0/10, Address is 00:0b:86:95:04:c2
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Auto negotiation in progress
Interface index: 11
MTU 1514 bytes
Link flaps: 0
Flags: Access, Trusted
Link status last changed:       0d 00:00:00 ago
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago
Statistics:
    Received 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
Interface is not PoE capable


GE0/0/11
--------
GE0/0/11 is administratively Up, Link is Down, Line protocol is Down
Hardware is Gigabit Ethernet, Interface is GE0/0/11, Address is 00:0b:86:95:04:c3
Encapsulation ARPA, Loopback not set
Configured: duplex (Auto), Speed (Auto), FC (Off), Autoneg (On)
Auto negotiation in progress
Interface index: 12
MTU 1514 bytes
Link flaps: 0
Flags: Access, Trusted
Link status last changed:       0d 00:00:00 ago
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago
Statistics:
    Received 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
Interface is not PoE capable


GE0/1/0
-------
GE0/1/0 is administratively Up, Link is Down, Line protocol is Down
Hardware is Gigabit Ethernet, Interface is GE0/1/0, Address is 00:0b:86:95:04:c4
Encapsulation ARPA, Loopback not set
Configured: duplex (N/A), Speed (N/A), FC (Off), Autoneg (Off)
Interface index: 129
MTU 1514 bytes
Link flaps: 0
Flags: Access, Trusted
Link status last changed:       0d 00:00:00 ago
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago
Statistics:
    Received 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    Transmitted 0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 errors octets, 0 deferred
    0 collisions, 0 late collisions
Interface is not PoE capable

show interface tunnel

show switchinfo

Hostname is MAS1500-1
                     System Time:Wed Aug 27 21:16:52 PST 2014


Aruba Operating System Software.
ArubaOS (MODEL: ArubaS1500-12P), Version 7.3.2.2
Website: http://www.arubanetworks.com
Copyright (c) 2002-2014, Aruba Networks, Inc.
Compiled on 2014-07-09 at 11:48:15 PDT (build 44718) by p4build
ROM: System Bootstrap, Version CPBoot 1.0.42.0 (build 39779)
Built: 2013-09-09 07:19:55
Built by: p4build@re_client_39779
Switch uptime is 18 hours 12 minutes 26 seconds
Reboot Cause: User reboot.
Processor XLS 208 (revision A1) with 1023M bytes of memory.
959M bytes of System flash


VLAN1 is administratively Up, Line protocol is Up
Hardware is CPU Interface, Address is 00:0b:86:95:04:b7
Description: 802.1Q VLAN
Internet address is 10.215.1.27, Netmask is 255.255.255.0
IPV6 link-local address is fe80::b:8600:195:4b7
Global Unicast address(es):
IP address is obtained through DHCP
DHCP data: server 10.215.1.254, router 10.215.1.254, domain arubanetworks.co.jp, DNS 10.215.1.1, lease time(in secs) 86400 state BOUND
Routing interface is enabled, Forwarding mode is enabled
Directed broadcast is disabled, BCMC Optimization disabled
Encapsulation 802, Loopback not set
Interface index: 50331649
MTU 1500 bytes
Configuration unchanged since last save
No crash information available.

show port status


Interface  Admin   Line Protocol  Link  PoE     Trusted  Mode
---------  -----   -------------  ----  ---     -------  ----
GE0/0/0    Enable  Up             Up    Enable  Yes      Access
GE0/0/1    Enable  Up             Up    Enable  Yes      Access
GE0/0/2    Enable  Down           Down  Enable  Yes      Access
GE0/0/3    Enable  Up             Up    Enable  Yes      Access
GE0/0/4    Enable  Up             Up    Enable  Yes      Access
GE0/0/5    Enable  Up             Up    Enable  No       Access
GE0/0/6    Enable  Down           Down  Enable  Yes      Access
GE0/0/7    Enable  Down           Down  Enable  Yes      Access
GE0/0/8    Enable  Down           Down          Yes      Access
GE0/0/9    Enable  Down           Down          Yes      Access
GE0/0/10   Enable  Down           Down          Yes      Access
GE0/0/11   Enable  Down           Down          Yes      Access
GE0/1/0    Enable  Down           Down          Yes      Access

show port stats


Port                           PacketsIn        PacketsOut           BytesIn          BytesOut   InputErrorBytes  OutputErrorBytes          CRCError

  gigabitethernet0/0/0            647626            135506          67152516          18175576                 0                 0                 0
  gigabitethernet0/0/1             18751            308065           4120411          27475174                 0                 0                 0
  gigabitethernet0/0/2                 0                 0                 0                 0                 0                 0                 0
  gigabitethernet0/0/3              5877            297327           1514902          23986379                 0                 0                 0
  gigabitethernet0/0/4             75156            228039           5894312          19552491                 0                 0                 0
  gigabitethernet0/0/5             25668            320405           5410050          38547152                 0                 0                 0
  gigabitethernet0/0/6                 0                 0                 0                 0                 0                 0                 0
  gigabitethernet0/0/7                 0                 0                 0                 0                 0                 0                 0
  gigabitethernet0/0/8                 0                 0                 0                 0                 0                 0                 0
  gigabitethernet0/0/9                 0                 0                 0                 0                 0                 0                 0
 gigabitethernet0/0/10                 0                 0                 0                 0                 0                 0                 0
 gigabitethernet0/0/11                 0                 0                 0                 0                 0                 0                 0
  gigabitethernet0/1/0                 0                 0                 0                 0                 0                 0                 0

show port-error recovery

show poe


Port     Status  Voltage(mV)  Current(mA)  Power (mW)
----     ------  -----------  -----------  ----------
GE0/0/0  Off     N/A          N/A          N/A
GE0/0/1  On      55500        115          6500
GE0/0/2  Off     N/A          N/A          N/A
GE0/0/3  On      55500        81           4500
GE0/0/4  On      55900        73           4000
GE0/0/5  Off     N/A          N/A          N/A
GE0/0/6  Off     N/A          N/A          N/A
GE0/0/7  Off     N/A          N/A          N/A

Total Power Usage: 15000 (mW)

show poe interface brief


PoE Interface Brief
-------------------
Interface  Admin   Consumption(mW)  Port Priority  Port Status
---------  -----   ---------------  -------------  -----------
GE0/0/0    Enable  0                Low            Off
GE0/0/1    Enable  6500             Low            On
GE0/0/2    Enable  0                Low            Off
GE0/0/3    Enable  4500             Low            On
GE0/0/4    Enable  4000             Low            On
GE0/0/5    Enable  0                Low            Off
GE0/0/6    Enable  0                Low            Off
GE0/0/7    Enable  0                Low            Off

show poe interface


GE0/0/0
-------
GE0/0/0: Administratively Enable, Port status: Off
Maximum power: 30000 mW, Power consumption: 0 mW
Port voltage: 0 mV, Port current: 0 mA
PD class: Class-0, Priority: Low, PSE port status: Off, PD detection in progress


GE0/0/1
-------
GE0/0/1: Administratively Enable, Port status: On
Maximum power: 30000 mW, Power consumption: 6500 mW
Port voltage: 55500 mV, Port current: 115 mA
PD class: Class-3, Priority: Low, PSE port status: On


GE0/0/2
-------
GE0/0/2: Administratively Enable, Port status: Off
Maximum power: 30000 mW, Power consumption: 0 mW
Port voltage: 0 mV, Port current: 0 mA
PD class: Class-0, Priority: Low, PSE port status: Off, PD detection in progress


GE0/0/3
-------
GE0/0/3: Administratively Enable, Port status: On
Maximum power: 30000 mW, Power consumption: 4500 mW
Port voltage: 55500 mV, Port current: 81 mA
PD class: Class-3, Priority: Low, PSE port status: On


GE0/0/4
-------
GE0/0/4: Administratively Enable, Port status: On
Maximum power: 30000 mW, Power consumption: 4000 mW
Port voltage: 55900 mV, Port current: 73 mA
PD class: Class-3, Priority: Low, PSE port status: On


GE0/0/5
-------
GE0/0/5: Administratively Enable, Port status: Off
Maximum power: 30000 mW, Power consumption: 0 mW
Port voltage: 0 mV, Port current: 0 mA
PD class: Class-0, Priority: Low, PSE port status: Off, PD detection in progress


GE0/0/6
-------
GE0/0/6: Administratively Enable, Port status: Off
Maximum power: 30000 mW, Power consumption: 0 mW
Port voltage: 0 mV, Port current: 0 mA
PD class: Class-0, Priority: Low, PSE port status: Off, PD detection in progress


GE0/0/7
-------
GE0/0/7: Administratively Enable, Port status: Off
Maximum power: 30000 mW, Power consumption: 0 mW
Port voltage: 0 mV, Port current: 0 mA
PD class: Class-0, Priority: Low, PSE port status: Off, PD detection in progress

show poe controller


Linecard  PowerBudget(W)  Power Consumption(W)  GuardBand(mW)  PoE Management
--------  --------------  --------------------  -------------  --------------
0         120             15                    11000          Dynamic

show aaa authentication dot1x


802.1X Authentication Profile List
----------------------------------
Name     References  Profile Status
----     ----------  --------------
default  1
Total:1

show aaa authentication mac


MAC Authentication Profile List
-------------------------------
Name          References  Profile Status
----          ----------  --------------
default       1
tpl-CPPM-Pub  1
Total:2

show aaa authentication captive-portal


Captive Portal Authentication Profile List
------------------------------------------
Name     References  Profile Status
----     ----------  --------------
default  0
Total:1

show aaa timers


User idle timeout = 300 seconds
Auth Server dead time = 10 minutes
Logon user lifetime = 5 minutes
User Interim stats frequency = 600 seconds

show aaa authentication-server tacacs statistics


TACACS Server Statistics
------------------------
Statistics
----------
Accounting Requests
Authentication Start Requests
Authorization Requests
Authentication Responses(Pass)
Authentication Responses(Fail)
Authorization Responses(Pass)
Authorization Responses(Fail)
Accounting Responses(Pass)
Accounting Responses(Fail)
Total Login Successes
Total Login Failures
Timeouts
AvgRespTime (ms)
Uptime (d:h:m)

show aaa authentication-server ldap statistics


LDAP Server Statistics
----------------------
Statistics
----------
Login Requests
Login Success
Login Failure
Login Timeout
Total Unbind Requests
  - Reason: Timeout
AvgRespTime (ms)
Uptime (d:h:m)

show aaa authentication captive-portal customization


Captive-Portal Customization
----------------------------
Profile  Customized
-------  ----------
default  No

show station-table


Station Entry
-------------
     MAC            Name         Role                        Age(d:h:m)  Auth  Interface  Profile
------------       ------        ----                        ----------  ----  ---------  -------
f0:de:f1:72:78:e0  f0def17278e0  tpl-CPPM-Pub-mac-auth-role  00:18:01    Yes   0/0/5      tpl-CPPM-Pub

Station Entries: 1

show crypto-local pki PublicCert


Certificates
------------
Name            Original Filename  Reference Count  Expired
--------------  -----------------  ---------------  -------

show local-userdb


User Summary
------------
Name  Password  Role  E-Mail  Enabled  Expiry  Status  Sponsor-Name  Remote-IP  Grantor-Name
----  --------  ----  ------  -------  ------  ------  ------------  ---------  ------------

User Entries: 0

show ip access-list brief


Access list table
-----------------
Name                       Type                      Use Count  Roles
----                       ----                      ---------  -----
allowall-stateless         stateless                 1          authenticated
denyall-stateless          stateless                 1          denyall
denydhcp                   stateless (not editable)  1          denydhcp
dhcp-acl-stateless         stateless                 1          guest
dns-acl-stateless          stateless                 1          guest
http-acl-stateless         stateless                 1          guest
https-acl-stateless        stateless                 1          guest
icmp-acl-stateless         stateless                 1          guest
logon-control-stateless    stateless                 1          logon
stateful-dot1x             session
sys-ap-acl                 session (not editable)    1          sys-ap-role
sys-ap-acl-stateless       stateless (not editable)  1          sys-ap-role
sys-control                session (not editable)    1          sys-ap-role
sys-control-stateless      stateless (not editable)  1          sys-ap-role
sys-cp-acl                 session (not editable)
sys-cp-acl-stateless       stateless (not editable)
tpl-CPPM-Pub-mac-auth-acl  stateless                 1          tpl-CPPM-Pub-mac-auth-role
validuser                  session
validuserethacl            eth

show acl hits

show firewall-cp


CP firewall policies
--------------------
Protocol  Start Port  End Port  Permit/Deny  hits  contract
--------  ----------  --------  -----------  ----  --------

show firewall-cp internal


CP firewall policies
--------------------
Protocol  Start Port  End Port  Permit/Deny  hits   contract
--------  ----------  --------  -----------  ----   --------
6         1723        1723      Deny         0
17        1701        1701      Deny         0
6         23          23        Deny         0
6         8084        8084      Deny         0
6         3306        3306      Deny         0
17        8209        8209      Permit       0
6         8211        8211      Permit       0
6         2300        2300      Permit       0
6         2323        2323      Permit       0
6         8211        8211      Permit       0
6         21          22        Permit       526
6         17          17        Permit       0
17        514         514       Permit       0
50        0           65535     Permit       0
17        8200        8200      Permit       0
112       0           65535     Permit       0
89        0           65535     Permit       0
2         0           65535     Permit       0
17        1702        1702      Permit       0
17        500         500       Permit       0
17        4500        4500      Permit       0
4         0           65535     Permit       0
47        0           65535     Permit       0
6         80          80        Permit       0
6         443         443       Permit       0
6         4343        4343      Permit       0
6         8080        8083      Permit       0
6         8088        8088      Permit       0
6         8888        8888      Permit       0
6         636         636       Permit       0
6         389         389       Permit       0
6         5080        5080      Permit       0
17        1645        1645      Permit       0
17        1812        1813      Permit       0
17        8211        8211      Permit       0
17        53          53        Permit       0
17        67          68        Permit       4
17        69          69        Permit       0
17        123         123       Permit       0
17        3799        3799      Permit       0
17        161         161       Permit       0
17        5060        5060      Permit       0
17        8209        8209      Permit       0
17        434         434       Permit       0
1         1024        65535     Permit       0
0         0           65535     Deny         13766

show ip-profile


ip-profile "default"
--------------------
Parameter            Value
---------            -----
Default Gateway      N/A
Import DHCP Gateway  Enabled
controller-ip        N/A

show arp


Codes: * - Local Addresses

Total ARP entries: 4

IPV4 ARP Table
--------------
 Protocol    IP Address    Hardware Address   Interface  Age (min)
----------   ----------    ----------------   ---------  ---------
 * Internet  10.215.1.27   00:0b:86:95:04:b7  vlan1      NA
   Internet  10.215.1.22   f0:de:f1:72:78:e0  vlan1      1081
   Internet  10.215.1.77   08:11:96:8a:54:6c  vlan1      5
   Internet  10.215.1.254  00:0b:86:60:1c:4a  vlan1      1088

show ip ospf

OSPF is not configured

OSPF is not configured

show ip ospf interface

OSPF is not configured

OSPF is not configured

show ip ospf neighbor

OSPF is not configured

OSPF is not configured

show ip ospf database

OSPF is not configured

OSPF is not configured

show vrrp

INFO: VRRP is disabled

INFO: VRRP is disabled

show ip pim mroute


IP Multicast Route Table
Flags:  D - Dense, S - Sparse, s - SSM, C - Connected Receiver,
        J - Join SPT, R - RP-bit set, T - SPT bit set
        F - Register Flag, N - Null Register, A - Assert Winner

show ip pim neighbor


PIM Neighbor Information
------------------------
Interface  Neighbor IP  UpTime  Expiry
---------  -----------  ------  ------

show spanning-tree detail



MST 0

vlans mapped         : 1-4094
Configuration Digest : 0xAC36177F50283CD4B83821D8AB26DE62

Root ID            Address: 000b.8662.0950,  Priority: 32768
Regional Root ID   Address: 000b.8695.04b7,  Priority: 32768
Bridge ID          Address: 000b.8695.04b7,  Priority: 32768
External root path cost 200000, Internal root path cost 0


Interface  Role  State  Port Id  Cost    Type
---------  ----  -----  -------  ----    ----
GE0/0/0    Root  FWD    128.1    200000  P2p Bound
GE0/0/1    Desg  FWD    128.2    20000   P2p
GE0/0/3    Desg  FWD    128.4    20000   P2p
GE0/0/4    Desg  FWD    128.5    20000   P2p
GE0/0/5    Desg  FWD    128.6    20000   P2p Edge

show tunneled-node config


Tunneled Node Client: Disabled
Tunneled Node Server: 0.0.0.0
Tunneled Node Loop Prevention: Disabled

show tunneled-node state


Tunneled Node State
-------------------
IP  MAC  Port  state  vlan  tunnel  inactive-time
--  ---  ----  -----  ----  ------  -------------

show vlan extensive


Dot1q tag: 1, Description: VLAN0001
IGMP-snooping profile name: igmp-snooping-factory-initial
IGMP-snooping: Enabled
IGMP-snooping proxy: Disabled
MSTP instance: 0
MAC aging time: 5 minutes
Number of interfaces: 9, Active: 5, Non-Blocking: 5
VLAN membership:
        GE0/0/0*   Access Trusted   Untagged
        GE0/0/1*   Access Trusted   Untagged
        GE0/0/2    Access Trusted   Untagged
        GE0/0/3*   Access Trusted   Untagged
        GE0/0/4*   Access Trusted   Untagged
        GE0/0/10   Access Trusted   Untagged
        GE0/0/11   Access Trusted   Untagged
        GE0/1/0    Access Trusted   Untagged
MAC based VLAN assignment:
        GE0/0/5*   Access Untrusted f0:de:f1:72:78:e0 Untagged


Dot1q tag: 300, Description: VLAN0300
MSTP instance: 0
MAC aging time: 5 minutes
Number of interfaces: 5, Active: 1, Non-Blocking: 1
VLAN membership:
        GE0/0/5*   Access Untrusted Untagged
        GE0/0/6    Access Trusted   Untagged
        GE0/0/7    Access Trusted   Untagged
        GE0/0/8    Access Trusted   Untagged
        GE0/0/9    Access Trusted   Untagged

show neighbor-devices


Capability codes: (R)Router, (B)Bridge, (A)Access Point, (P)Phone, (S)Station
                  (r)Repeater, (O)Other
Neighbor Devices Information
----------------------------
Local Intf  Chassis ID         Protocol  Capability  Remote Intf        Expiry (Secs)  System Name
----------  ----------         --------  ----------  -----------        -------------  -----------
GE0/0/0     6c:f3:7f:c5:a7:da  LLDP      B:A         6c:f3:7f:c5:a7:da  98             6c:f3:7f:c5:a7:da
GE0/0/0     24:de:c6:cb:0c:f6  LLDP      B:A         24:de:c6:cb:0c:f6  108            iaptest-22
GE0/0/1     00:0b:86:cf:95:94  LLDP      B:A         00:0b:86:cf:95:94  94             00:0b:86:cf:95:94
GE0/0/3     d8:c7:c8:c4:40:67  LLDP      B:A         d8:c7:c8:c4:40:67  111            d8:c7:c8:c4:40:67
GE0/0/4     d8:c7:c8:c8:eb:e8  LLDP      B:A         d8:c7:c8:c8:eb:e8  105            d8:c7:c8:c8:eb:e8

Number of neighbors: 5

show neighbor-devices phones


Neighbor Phones
---------------
Interface  Protocol  Phone MAC  Voice VLAN
---------  --------  ---------  ----------

Number of phones: 0

show lldp statistics


LLDP Statistics
---------------
Interface  Received  Unknown TLVs  Malformed  Transmitted
---------  --------  ------------  ---------  -----------
GE0/0/0    4342      0             0          2186
GE0/0/1    1961      0             0          2184
GE0/0/2    0         0             0          0
GE0/0/3    2179      0             0          2185
GE0/0/4    2158      0             0          2185
GE0/0/5    0         0             0          2179
GE0/0/6    0         0             0          0
GE0/0/7    0         0             0          0
GE0/0/8    0         0             0          0
GE0/0/9    0         0             0          0
GE0/0/10   0         0             0          0
GE0/0/11   0         0             0          0
GE0/1/0    0         0             0          0

show neighbor-devices cdp-statistics


Neighbor Discovery CDP RX Statistics
------------------------------------
Interface  Received
---------  --------

show mac-address-table summary


Total MAC address: 43
Learnt: 42, Static: 0, Auth: 1, Phone: 0 Sticky: 0 Blacklisted: 0


show mac-address-table sticky


Total MAC address: 0

MAC Address Table
-----------------
Destination Address  Address Type  VLAN  Destination Port
-------------------  ------------  ----  ----------------

show mac-address-table


Total MAC address: 43
Learnt: 42, Static: 0, Auth: 1, Phone: 0 Sticky: 0 Blacklisted: 0

MAC Address Table
-----------------
Destination Address  Address Type  VLAN  Destination Port
-------------------  ------------  ----  ----------------
00:00:5e:00:01:01    Learnt        0001  GE0/0/0
00:02:2a:e2:57:60    Learnt        0001  GE0/0/0
00:0b:86:60:1c:4a    Learnt        0001  GE0/0/0
00:0b:86:6c:d5:c0    Learnt        0001  GE0/0/0
00:0b:86:6e:70:2c    Learnt        0001  GE0/0/0
00:0b:86:6e:70:44    Learnt        0001  GE0/0/0
00:0b:86:cf:95:94    Learnt        0001  GE0/0/1
00:0c:29:07:7f:11    Learnt        0001  GE0/0/0
00:0c:29:10:06:3b    Learnt        0001  GE0/0/0
00:0c:29:16:ef:49    Learnt        0001  GE0/0/0
00:0c:29:26:52:1f    Learnt        0001  GE0/0/0
00:0c:29:3d:15:c9    Learnt        0001  GE0/0/0
00:0c:29:42:43:ea    Learnt        0001  GE0/0/0
00:0c:29:46:c2:d0    Learnt        0001  GE0/0/0
00:0c:29:51:f2:ee    Learnt        0001  GE0/0/0
00:0c:29:60:a1:85    Learnt        0001  GE0/0/0
00:0c:29:79:55:6a    Learnt        0001  GE0/0/0
00:0c:29:bc:35:79    Learnt        0001  GE0/0/0
00:0c:29:c4:81:be    Learnt        0001  GE0/0/0


MAC Address Table
-----------------
Destination Address  Address Type  VLAN  Destination Port
-------------------  ------------  ----  ----------------
00:0d:0b:e6:d9:1a    Learnt        0001  GE0/0/0
00:0f:e5:02:35:cb    Learnt        0001  GE0/0/0
00:10:23:f0:15:b2    Learnt        0001  GE0/0/0
00:15:5d:06:a9:0e    Learnt        0001  GE0/0/0
00:15:5d:06:ab:01    Learnt        0001  GE0/0/0
00:1f:fe:a7:1b:40    Learnt        0001  GE0/0/0
00:24:b2:57:2c:78    Learnt        0001  GE0/0/0
00:e0:db:0b:47:38    Learnt        0001  GE0/0/0
00:e0:db:0b:fa:a5    Learnt        0001  GE0/0/0
08:00:46:da:74:63    Learnt        0001  GE0/0/0
08:11:96:8a:54:6c    Learnt        0001  GE0/0/0
14:7d:c5:c8:64:69    Learnt        0001  GE0/0/1
28:92:4a:2b:fa:f7    Learnt        0001  GE0/0/0
28:d2:44:60:36:b9    Learnt        0001  GE0/0/0
34:f6:2d:51:af:18    Learnt        0001  GE0/0/0
6c:f3:7f:c6:7e:a6    Learnt        0001  GE0/0/0
70:58:12:25:e9:82    Learnt        0001  GE0/0/0
d0:67:e5:c0:82:5a    Learnt        0001  GE0/0/0
d8:c7:c8:c4:40:67    Learnt        0001  GE0/0/3


MAC Address Table
-----------------
Destination Address  Address Type  VLAN  Destination Port
-------------------  ------------  ----  ----------------
d8:c7:c8:c8:eb:e8    Learnt        0001  GE0/0/4
ec:a8:6b:f1:e9:c8    Learnt        0001  GE0/0/0
f0:de:f1:72:78:e0    Auth          0001  GE0/0/5
f8:bc:12:e0:ba:b1    Learnt        0001  GE0/0/0
f8:bc:12:e0:ba:be    Learnt        0001  GE0/0/0

show mac-learning-log


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 15:20:06  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 15:20:16  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 15:20:45  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 15:20:54  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 15:21:04  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 15:21:13  Vlan 1, MAC a0:b3:cc:df:48:db, Aged
Aug 27 15:21:31  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 15:21:34  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 15:22:01  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 15:22:10  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 15:22:18  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0
Aug 27 15:23:23  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 15:23:56  Vlan 1, MAC 00:16:01:19:29:cc, Aged
Aug 27 15:23:59  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 15:23:59  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 15:24:23  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 15:25:01  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0
Aug 27 15:25:08  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 15:25:20  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 15:25:26  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 15:25:37  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 15:25:46  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 15:26:05  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 15:27:04  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 15:27:14  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 15:27:18  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 15:27:23  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 15:27:33  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 15:27:48  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 15:28:18  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 15:28:35  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 15:28:37  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged
Aug 27 15:28:55  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 15:29:17  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 15:29:22  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 15:29:41  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 15:29:50  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 15:30:47  Vlan 1, MAC 00:16:01:19:29:cc, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 15:30:51  Vlan 1, MAC 00:0c:29:96:67:4b, Learnt on GE0/0/0
Aug 27 15:31:13  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 15:31:13  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 15:31:19  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 15:33:30  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 15:34:34  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 15:34:39  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 15:34:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 15:35:16  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 15:35:18  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 15:35:19  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 15:35:49  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 15:36:37  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 15:36:37  Vlan 1, MAC 00:16:01:19:29:cc, Aged
Aug 27 15:37:00  Vlan 1, MAC 00:0c:29:96:67:4b, Aged
Aug 27 15:38:52  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 15:39:06  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 15:39:50  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 15:39:56  Vlan 1, MAC 00:0c:29:16:ef:49, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 15:40:09  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 15:40:15  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 15:42:01  Vlan 1, MAC 28:92:4a:2b:fa:f7, Aged
Aug 27 15:42:03  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 15:42:19  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 15:42:25  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 15:43:04  Vlan 1, MAC 00:0b:86:6e:65:c0, Learnt on GE0/0/0
Aug 27 15:43:26  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 15:43:35  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 15:44:28  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 15:45:08  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 15:45:45  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 15:45:45  Vlan 1, MAC a0:b3:cc:df:48:db, Learnt on GE0/0/0
Aug 27 15:45:47  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 15:45:54  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 15:46:29  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 15:46:46  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 15:46:47  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 15:47:21  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 15:47:24  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 15:47:34  Vlan 1, MAC 00:0c:29:79:55:6a, Aged
Aug 27 15:48:13  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 15:48:19  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 15:48:29  Vlan 1, MAC 00:0c:29:79:55:6a, Learnt on GE0/0/0
Aug 27 15:48:45  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 15:48:59  Vlan 1, MAC 00:0b:86:6e:65:c0, Aged
Aug 27 15:49:27  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 15:49:27  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 15:49:32  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 15:49:34  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 15:50:13  Vlan 1, MAC 00:0c:29:96:67:4b, Learnt on GE0/0/0
Aug 27 15:51:25  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 15:51:51  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0
Aug 27 15:51:52  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 15:51:53  Vlan 1, MAC a0:b3:cc:df:48:db, Aged
Aug 27 15:52:22  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 15:52:37  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 15:52:57  Vlan 1, MAC 00:0c:29:07:7f:11, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 15:53:15  Vlan 1, MAC 00:0b:86:6e:65:c0, Learnt on GE0/0/0
Aug 27 15:53:55  Vlan 1, MAC 00:0c:29:79:55:6a, Aged
Aug 27 15:54:00  Vlan 1, MAC 00:0c:29:79:55:6a, Learnt on GE0/0/0
Aug 27 15:54:40  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 15:55:37  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 15:55:42  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0
Aug 27 15:55:52  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 15:56:01  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 15:56:02  Vlan 1, MAC 00:0c:29:96:67:4b, Aged
Aug 27 15:56:03  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 15:56:12  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 15:57:01  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 15:57:10  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged
Aug 27 15:57:28  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 15:57:32  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 15:57:34  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 15:57:46  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 15:59:25  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 15:59:33  Vlan 1, MAC 00:0b:86:6e:65:c0, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 15:59:57  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 16:00:03  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 16:00:46  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 16:01:05  Vlan 1, MAC 00:16:01:19:29:cc, Learnt on GE0/0/0
Aug 27 16:01:53  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 16:01:59  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 16:02:27  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 16:03:07  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 16:03:12  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 16:03:46  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 16:03:49  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 16:04:11  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 16:04:15  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 16:04:53  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 16:04:53  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 16:05:37  Vlan 1, MAC 00:0c:29:66:a6:c9, Learnt on GE0/0/0
Aug 27 16:05:37  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 16:05:39  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 16:06:29  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 16:07:17  Vlan 1, MAC 00:16:01:19:29:cc, Aged
Aug 27 16:07:18  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 16:07:31  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 16:07:38  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 16:08:08  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 16:09:04  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 16:09:09  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 16:09:20  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 16:09:22  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 16:10:06  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 16:10:36  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 16:10:53  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 16:11:29  Vlan 1, MAC 00:0c:29:66:a6:c9, Aged
Aug 27 16:12:41  Vlan 1, MAC 28:92:4a:2b:fa:f7, Aged
Aug 27 16:13:18  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 16:13:42  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 16:13:42  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 16:14:19  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 16:14:44  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 16:15:47  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 16:16:28  Vlan 1, MAC a0:b3:cc:df:48:db, Learnt on GE0/0/0
Aug 27 16:16:46  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 16:17:02  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 16:17:13  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 16:17:17  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 16:18:00  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 16:18:00  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 16:18:00  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 16:18:31  Vlan 1, MAC 00:16:01:19:29:cc, Learnt on GE0/0/0
Aug 27 16:18:37  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 16:19:07  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 16:19:22  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 16:19:30  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 16:20:16  Vlan 1, MAC 00:13:d4:33:5b:75, Learnt on GE0/0/0
Aug 27 16:20:27  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 16:21:06  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 16:21:27  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 16:22:19  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 16:22:33  Vlan 1, MAC a0:b3:cc:df:48:db, Aged
Aug 27 16:22:43  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 16:22:54  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 16:23:04  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 16:23:31  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 16:24:11  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 16:24:13  Vlan 1, MAC 00:16:01:19:29:cc, Aged
Aug 27 16:24:16  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 16:24:20  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 16:24:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 16:26:02  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 16:26:14  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 16:26:22  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 16:26:23  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0
Aug 27 16:26:27  Vlan 1, MAC 00:13:d4:33:5b:75, Aged
Aug 27 16:26:27  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 16:27:47  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 16:27:49  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 16:27:50  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 16:28:30  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 16:28:35  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 16:28:35  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 16:28:35  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 16:28:47  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 16:28:55  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 16:29:28  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 16:29:29  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 16:30:21  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 16:31:01  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 16:31:13  Vlan 1, MAC 00:0c:29:96:67:4b, Learnt on GE0/0/0
Aug 27 16:31:24  Vlan 1, MAC 00:16:01:19:29:cc, Learnt on GE0/0/0
Aug 27 16:31:33  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 16:31:45  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 16:32:14  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 16:32:33  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 16:33:29  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 16:33:47  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 16:34:15  Vlan 1, MAC 00:13:d4:33:5b:75, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 16:34:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 16:35:02  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 16:35:09  Vlan 1, MAC 00:0b:86:6e:65:c0, Learnt on GE0/0/0
Aug 27 16:35:34  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 16:35:47  Vlan 1, MAC 00:0c:29:bc:35:79, Aged
Aug 27 16:36:18  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 16:36:37  Vlan 1, MAC 00:0c:29:bc:35:79, Learnt on GE0/0/0
Aug 27 16:36:54  Vlan 1, MAC 00:16:01:19:29:cc, Aged
Aug 27 16:37:16  Vlan 1, MAC 00:0c:29:96:67:4b, Aged
Aug 27 16:37:31  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 16:37:55  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 16:37:58  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 16:38:06  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 16:38:34  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 16:39:09  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 16:39:09  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 16:39:22  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 16:39:45  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 16:40:12  Vlan 1, MAC 00:13:d4:33:5b:75, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 16:40:32  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 16:40:48  Vlan 1, MAC 00:0b:86:6e:65:c0, Aged
Aug 27 16:42:15  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 16:42:35  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 16:42:51  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 16:43:18  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 16:43:21  Vlan 1, MAC 28:92:4a:2b:fa:f7, Aged
Aug 27 16:43:35  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 16:43:35  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 16:43:43  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 16:43:52  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 16:44:28  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 16:45:07  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 16:45:19  Vlan 1, MAC 00:0b:86:6e:65:c0, Learnt on GE0/0/0
Aug 27 16:45:20  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 16:45:42  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 16:46:53  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 16:47:09  Vlan 1, MAC a0:b3:cc:df:48:db, Learnt on GE0/0/0
Aug 27 16:47:11  Vlan 1, MAC 00:15:5d:06:ab:01, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 16:47:27  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 16:47:31  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 16:47:35  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 16:47:35  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 16:49:39  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 16:49:44  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 16:49:59  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 16:50:20  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 16:51:22  Vlan 1, MAC 00:0b:86:6e:65:c0, Aged
Aug 27 16:51:43  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 16:52:19  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0
Aug 27 16:52:37  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 16:52:42  Vlan 1, MAC 00:0c:29:bc:35:79, Aged
Aug 27 16:52:44  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 16:52:50  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 16:52:54  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 16:53:13  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 16:53:13  Vlan 1, MAC a0:b3:cc:df:48:db, Aged
Aug 27 16:53:14  Vlan 1, MAC 00:0c:29:07:7f:11, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 16:53:36  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 16:53:53  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 16:54:30  Vlan 1, MAC 00:0c:29:bc:35:79, Learnt on GE0/0/0
Aug 27 16:54:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 16:55:00  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 16:55:29  Vlan 1, MAC 00:0b:86:6e:65:c0, Learnt on GE0/0/0
Aug 27 16:56:03  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 16:56:11  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 16:57:03  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 16:57:04  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 16:57:04  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0
Aug 27 16:57:07  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 16:57:48  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 16:57:53  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 16:58:04  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 16:58:30  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged
Aug 27 16:58:41  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 16:58:44  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 16:58:47  Vlan 1, MAC 00:13:d4:33:5b:75, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 16:59:39  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 17:00:18  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 17:00:23  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 17:00:37  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 17:00:43  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 17:00:53  Vlan 1, MAC 00:0b:86:6e:65:c0, Aged
Aug 27 17:01:22  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 17:01:41  Vlan 1, MAC 00:16:01:19:29:cc, Learnt on GE0/0/0
Aug 27 17:02:39  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 17:03:02  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 17:03:13  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 17:03:20  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 17:04:27  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 17:04:27  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 17:04:31  Vlan 1, MAC 00:13:d4:33:5b:75, Aged
Aug 27 17:04:31  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 17:04:33  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 17:04:44  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 17:04:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 17:05:04  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 17:05:37  Vlan 1, MAC 00:0c:29:66:a6:c9, Learnt on GE0/0/0
Aug 27 17:05:37  Vlan 1, MAC 00:0b:86:6e:65:c0, Learnt on GE0/0/0
Aug 27 17:05:37  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 17:05:42  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 17:05:55  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 17:06:29  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 17:07:07  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 17:07:31  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 17:07:34  Vlan 1, MAC 00:16:01:19:29:cc, Aged
Aug 27 17:07:42  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 17:07:50  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 17:08:11  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 17:08:41  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 17:09:05  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 17:09:26  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 17:10:08  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 17:10:48  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 17:11:12  Vlan 1, MAC 00:0c:29:60:a1:85, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 17:11:23  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 17:11:28  Vlan 1, MAC 00:0b:86:6e:65:c0, Aged
Aug 27 17:11:42  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 17:11:46  Vlan 1, MAC 00:0c:29:66:a6:c9, Aged
Aug 27 17:11:50  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 17:12:08  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 17:12:11  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 17:13:00  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 17:13:53  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 17:13:54  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 17:13:58  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 17:14:01  Vlan 1, MAC 28:92:4a:2b:fa:f7, Aged
Aug 27 17:14:15  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 17:14:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 17:15:44  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 17:15:45  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 17:16:04  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 17:16:24  Vlan 1, MAC 00:0c:29:79:55:6a, Aged
Aug 27 17:16:31  Vlan 1, MAC 00:0c:29:79:55:6a, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 17:17:10  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 17:17:52  Vlan 1, MAC a0:b3:cc:df:48:db, Learnt on GE0/0/0
Aug 27 17:18:12  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 17:18:31  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 17:18:51  Vlan 1, MAC 00:16:01:19:29:cc, Learnt on GE0/0/0
Aug 27 17:19:20  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 17:19:40  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 17:19:44  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 17:19:50  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 17:19:58  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 17:20:08  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 17:20:42  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 17:20:43  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 17:21:00  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 17:21:04  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 17:21:14  Vlan 1, MAC 00:0c:29:96:67:4b, Learnt on GE0/0/0
Aug 27 17:21:17  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 17:21:23  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 17:21:27  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 17:21:39  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 17:22:04  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 17:22:19  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0
Aug 27 17:23:53  Vlan 1, MAC a0:b3:cc:df:48:db, Aged
Aug 27 17:23:55  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 17:24:13  Vlan 1, MAC 00:13:d4:33:5b:75, Learnt on GE0/0/0
Aug 27 17:24:29  Vlan 1, MAC 00:16:01:19:29:cc, Aged
Aug 27 17:24:33  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 17:25:36  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 17:25:39  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 17:25:41  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 17:25:53  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 17:26:25  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 17:26:39  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 17:26:44  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 17:26:51  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 17:26:58  Vlan 1, MAC 00:0c:29:96:67:4b, Aged
Aug 27 17:27:03  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 17:27:45  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 17:27:48  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 17:28:07  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged
Aug 27 17:28:21  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 17:28:34  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 17:28:51  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 17:29:11  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 17:29:54  Vlan 1, MAC 00:13:d4:33:5b:75, Aged
Aug 27 17:30:15  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 17:31:18  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 17:31:47  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 17:33:46  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 17:33:53  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 17:34:03  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 17:34:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 17:35:48  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 17:36:13  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 17:36:16  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 17:36:18  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 17:37:09  Vlan 1, MAC 00:0b:86:6e:65:c0, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 17:37:19  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 17:37:26  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 17:38:30  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 17:38:45  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 17:39:06  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 17:39:21  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 17:39:22  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 17:39:25  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 17:39:55  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 17:40:48  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 17:41:53  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 17:42:26  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 17:42:47  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 17:42:49  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 17:43:11  Vlan 1, MAC 00:0b:86:6e:65:c0, Aged
Aug 27 17:43:35  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 17:44:17  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 17:44:32  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 17:44:34  Vlan 1, MAC 00:0b:86:6e:70:44, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 17:44:39  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 17:44:41  Vlan 1, MAC 28:92:4a:2b:fa:f7, Aged
Aug 27 17:45:02  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 17:45:20  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 17:46:27  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 17:46:45  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 17:47:01  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0
Aug 27 17:47:02  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 17:47:03  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 17:47:31  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 17:47:46  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 17:48:23  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 17:48:35  Vlan 1, MAC a0:b3:cc:df:48:db, Learnt on GE0/0/0
Aug 27 17:48:40  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 17:49:50  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 17:49:55  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 17:50:00  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 17:50:00  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 17:50:32  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 17:50:32  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 17:51:44  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 17:51:55  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 17:52:26  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged
Aug 27 17:53:31  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 17:54:09  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 17:54:09  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 17:54:11  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 17:54:33  Vlan 1, MAC a0:b3:cc:df:48:db, Aged
Aug 27 17:54:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 17:55:47  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 17:55:48  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 17:55:50  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 17:56:44  Vlan 1, MAC 00:0c:29:96:67:4b, Learnt on GE0/0/0
Aug 27 17:57:25  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 17:57:29  Vlan 1, MAC 00:0b:86:6e:65:c0, Learnt on GE0/0/0
Aug 27 17:57:31  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 17:57:40  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 17:58:02  Vlan 1, MAC 00:15:5d:06:ab:01, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 17:58:05  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 17:58:13  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 17:58:26  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0
Aug 27 17:58:31  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 17:58:38  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 17:59:42  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 17:59:52  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 18:00:54  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 18:01:39  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 18:01:57  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 18:02:54  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 18:02:56  Vlan 1, MAC 00:0c:29:96:67:4b, Aged
Aug 27 18:03:17  Vlan 1, MAC 00:0b:86:6e:65:c0, Aged
Aug 27 18:03:35  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 18:03:46  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 18:04:11  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 18:04:33  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 18:04:43  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 18:04:43  Vlan 1, MAC 00:0c:29:3e:43:72, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 18:04:48  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 18:05:37  Vlan 1, MAC 00:0c:29:66:a6:c9, Learnt on GE0/0/0
Aug 27 18:05:37  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 18:05:43  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 18:06:12  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 18:07:31  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 18:07:54  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 18:08:27  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 18:09:10  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 18:09:32  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 18:09:43  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 18:10:00  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 18:10:03  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 18:10:04  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 18:10:59  Vlan 1, MAC 00:0c:29:66:a6:c9, Aged
Aug 27 18:10:59  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 18:11:04  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 18:11:09  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 18:11:19  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 18:11:35  Vlan 1, MAC ec:a8:6b:f1:e9:c8, Learnt on GE0/0/0
Aug 27 18:11:35  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 18:11:54  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 18:12:50  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 18:12:53  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 18:12:54  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 18:14:15  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 18:14:44  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 18:15:18  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 18:15:21  Vlan 1, MAC 28:92:4a:2b:fa:f7, Aged
Aug 27 18:15:35  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 18:15:44  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 18:16:14  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 18:17:21  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 18:18:19  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0
Aug 27 18:18:23  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 18:18:26  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 18:18:33  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 18:18:34  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 18:18:34  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 18:18:41  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 18:18:52  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 18:19:01  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 18:19:16  Vlan 1, MAC a0:b3:cc:df:48:db, Learnt on GE0/0/0
Aug 27 18:19:36  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 18:19:59  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 18:20:47  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 18:21:08  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 18:21:21  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 18:22:07  Vlan 1, MAC 00:13:d4:33:5b:75, Learnt on GE0/0/0
Aug 27 18:22:43  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 18:22:43  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 18:24:09  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged
Aug 27 18:24:20  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 18:24:20  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 18:24:45  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 18:24:50  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 18:24:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 18:25:13  Vlan 1, MAC a0:b3:cc:df:48:db, Aged
Aug 27 18:25:58  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 18:26:08  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 18:26:14  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 18:26:35  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 18:26:55  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 18:27:14  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 18:27:41  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 18:28:04  Vlan 1, MAC 00:13:d4:33:5b:75, Aged
Aug 27 18:28:04  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 18:28:34  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 18:28:55  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 18:29:07  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0
Aug 27 18:29:08  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 18:29:28  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 18:29:58  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 18:30:31  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 18:31:18  Vlan 1, MAC 00:1a:1e:0f:92:40, Learnt on GE0/0/0
Aug 27 18:32:01  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 18:32:08  Vlan 1, MAC 00:13:d4:33:5b:75, Learnt on GE0/0/0
Aug 27 18:32:08  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 18:32:09  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 18:34:17  Vlan 1, MAC 18:64:72:c1:3e:08, Learnt on GE0/0/0
Aug 27 18:34:20  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 18:35:13  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 18:35:48  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 18:35:51  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 18:36:09  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 18:36:23  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 18:37:22  Vlan 1, MAC 00:1a:1e:0f:92:40, Aged
Aug 27 18:37:31  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 18:37:35  Vlan 1, MAC 00:13:d4:33:5b:75, Aged
Aug 27 18:38:39  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 18:38:39  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 18:39:32  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 18:39:42  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 18:39:43  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 18:39:44  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 18:39:51  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 18:40:01  Vlan 1, MAC 18:64:72:c1:3e:08, Aged
Aug 27 18:40:22  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 18:40:46  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 18:41:02  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 18:41:23  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 18:41:28  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 18:42:09  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 18:43:52  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 18:44:07  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 18:44:08  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 18:44:42  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 18:44:55  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 18:45:29  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 18:45:40  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 18:45:40  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 18:45:44  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 18:46:09  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 18:46:13  Vlan 1, MAC 00:0c:29:96:67:4b, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 18:46:26  Vlan 1, MAC a0:b3:cc:df:48:db, Learnt on GE0/0/0
Aug 27 18:46:37  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 18:46:56  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 18:46:59  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 18:47:04  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 18:47:05  Vlan 1, MAC 28:92:4a:2b:fa:f7, Aged
Aug 27 18:47:07  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 18:47:29  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 18:47:52  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 18:49:22  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 18:50:17  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 18:51:16  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 18:51:16  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 18:51:17  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 18:51:20  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 18:51:27  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 18:51:35  Vlan 1, MAC 00:0c:29:96:67:4b, Aged
Aug 27 18:51:40  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 18:52:15  Vlan 1, MAC 00:0b:86:6e:70:44, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 18:52:19  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 18:52:21  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0
Aug 27 18:52:43  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 18:52:58  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 18:54:31  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 18:54:36  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 18:54:51  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 18:55:08  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 18:55:42  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 18:55:53  Vlan 1, MAC a0:b3:cc:df:48:db, Aged
Aug 27 18:56:22  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 18:57:18  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 18:58:00  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged
Aug 27 18:59:09  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 18:59:50  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0
Aug 27 19:00:04  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 19:00:41  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 19:01:15  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 19:01:55  Vlan 1, MAC 00:0c:29:16:ef:49, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 19:03:10  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 19:03:39  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 19:03:57  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 19:04:01  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 19:04:04  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 19:04:07  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 19:05:00  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 19:05:00  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 19:05:17  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 19:05:25  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 19:05:31  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 19:05:37  Vlan 1, MAC 00:0c:29:66:a6:c9, Learnt on GE0/0/0
Aug 27 19:05:37  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 19:05:53  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 19:06:02  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 19:06:02  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 19:06:13  Vlan 1, MAC 00:0b:86:6c:d5:c0, Learnt on GE0/0/0
Aug 27 19:06:26  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 19:07:03  Vlan 1, MAC 00:0b:86:6e:70:44, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 19:08:05  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 19:08:16  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 19:08:23  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 19:08:50  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 19:09:09  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 19:09:26  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 19:09:38  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 19:09:56  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 19:09:57  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 19:10:00  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 19:10:13  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 19:11:16  Vlan 1, MAC 00:0c:29:66:a6:c9, Aged
Aug 27 19:11:20  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 19:11:27  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 19:11:46  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 19:11:50  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 19:12:05  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 19:12:25  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 19:12:27  Vlan 1, MAC 00:0b:86:6c:d5:c0, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 19:12:39  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 19:13:38  Vlan 1, MAC 00:24:6c:c2:a9:49, Learnt on GE0/0/0
Aug 27 19:13:47  Vlan 1, MAC 00:24:6c:c2:a9:4d, Learnt on GE0/0/0
Aug 27 19:13:51  Vlan 1, MAC 00:24:6c:c2:a9:4a, Learnt on GE0/0/0
Aug 27 19:14:20  Vlan 1, MAC 00:24:6c:c2:a9:51, Learnt on GE0/0/0
Aug 27 19:14:32  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 19:14:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 19:15:30  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 19:15:31  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 19:15:40  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 19:15:57  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 19:17:31  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 19:17:38  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 19:17:41  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 19:17:45  Vlan 1, MAC 28:92:4a:2b:fa:f7, Aged
Aug 27 19:18:07  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 19:18:51  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 19:19:09  Vlan 1, MAC 00:24:6c:c2:a9:4d, Aged
Aug 27 19:19:28  Vlan 1, MAC 24:de:c6:cb:66:f0, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 19:19:40  Vlan 1, MAC 00:24:6c:c0:01:17, Learnt on GE0/0/0
Aug 27 19:19:44  Vlan 1, MAC 00:24:6c:c2:a9:4a, Aged
Aug 27 19:19:45  Vlan 1, MAC 00:24:6c:c2:a9:49, Aged
Aug 27 19:19:53  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 19:20:09  Vlan 1, MAC 00:24:6c:c2:a9:51, Aged
Aug 27 19:20:13  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 19:20:30  Vlan 1, MAC 00:24:6c:c2:ac:ad, Learnt on GE0/0/0
Aug 27 19:20:39  Vlan 1, MAC a0:b3:cc:df:48:db, Learnt on GE0/0/0
Aug 27 19:21:06  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 19:21:10  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 19:21:16  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 19:21:21  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 19:21:30  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 19:21:38  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 19:22:11  Vlan 1, MAC 00:13:d4:33:5b:75, Learnt on GE0/0/0
Aug 27 19:22:21  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0
Aug 27 19:23:03  Vlan 1, MAC 00:0b:86:6e:b6:ec, Learnt on GE0/0/0
Aug 27 19:23:04  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 19:23:05  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 19:23:59  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 19:24:03  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 19:25:22  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 19:25:27  Vlan 1, MAC 24:de:c6:cb:66:f0, Aged
Aug 27 19:25:40  Vlan 1, MAC 00:24:6c:c0:01:17, Aged
Aug 27 19:26:10  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 19:26:29  Vlan 1, MAC 00:24:6c:c2:ac:ad, Aged
Aug 27 19:26:33  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 19:26:33  Vlan 1, MAC a0:b3:cc:df:48:db, Aged
Aug 27 19:26:55  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 19:27:12  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 19:27:35  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 19:28:21  Vlan 1, MAC 00:13:d4:33:5b:75, Aged
Aug 27 19:28:40  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged
Aug 27 19:29:02  Vlan 1, MAC 00:0b:86:6e:b6:ec, Aged
Aug 27 19:29:13  Vlan 1, MAC 00:0c:29:96:67:4b, Learnt on GE0/0/0
Aug 27 19:29:15  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 19:29:26  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 19:29:47  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 19:30:33  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0
Aug 27 19:31:00  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 19:31:00  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 19:31:05  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 19:31:17  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 19:32:55  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 19:33:16  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 19:34:37  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 19:34:56  Vlan 1, MAC 00:0c:29:96:67:4b, Aged
Aug 27 19:34:59  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 19:35:40  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 19:36:08  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 19:36:34  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 19:36:43  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 19:36:49  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 19:37:19  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 19:37:21  Vlan 1, MAC 00:13:d4:33:5b:75, Learnt on GE0/0/0
Aug 27 19:37:31  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 19:38:02  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 19:38:13  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 19:38:47  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 19:38:55  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 19:38:55  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 19:40:58  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 19:41:09  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 19:41:09  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 19:41:11  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 19:41:15  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 19:41:24  Vlan 1, MAC 00:0b:86:6e:65:c0, Learnt on GE0/0/0
Aug 27 19:41:37  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 19:41:42  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 19:42:08  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 19:42:26  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 19:43:09  Vlan 1, MAC 00:13:d4:33:5b:75, Aged
Aug 27 19:43:34  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 19:44:03  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 19:44:03  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 19:44:09  Vlan 1, MAC 00:0c:29:3e:43:72, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 19:44:13  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 19:44:26  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 19:44:32  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 19:44:50  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 19:44:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 19:45:12  Vlan 1, MAC 00:13:d4:33:5b:75, Learnt on GE0/0/0
Aug 27 19:45:31  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 19:46:55  Vlan 1, MAC 00:0b:86:6e:65:c0, Aged
Aug 27 19:47:14  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 19:48:16  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 19:48:25  Vlan 1, MAC 28:92:4a:2b:fa:f7, Aged
Aug 27 19:48:39  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 19:48:41  Vlan 1, MAC 00:0c:29:79:55:6a, Aged
Aug 27 19:48:42  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 19:48:44  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 19:49:13  Vlan 1, MAC 00:0c:29:79:55:6a, Learnt on GE0/0/0
Aug 27 19:50:06  Vlan 1, MAC 00:0c:29:f5:f8:cd, Learnt on GE0/0/0
Aug 27 19:50:11  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 19:50:33  Vlan 1, MAC 00:13:d4:33:5b:75, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 19:50:33  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 19:50:34  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 19:50:53  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 19:51:20  Vlan 1, MAC a0:b3:cc:df:48:db, Learnt on GE0/0/0
Aug 27 19:51:34  Vlan 1, MAC 00:0b:86:6e:65:c0, Learnt on GE0/0/0
Aug 27 19:51:36  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 19:52:21  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0
Aug 27 19:53:42  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 19:54:43  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 19:54:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 19:54:58  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 19:55:19  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 19:55:29  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 19:55:36  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 19:56:04  Vlan 1, MAC 00:0c:29:f5:f8:cd, Aged
Aug 27 19:57:14  Vlan 1, MAC a0:b3:cc:df:48:db, Aged
Aug 27 19:57:29  Vlan 1, MAC 00:0b:86:6e:65:c0, Aged
Aug 27 19:57:35  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 19:57:48  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 19:57:58  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 19:58:17  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged
Aug 27 19:58:19  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 19:58:40  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 19:59:41  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 20:00:07  Vlan 1, MAC 00:0c:29:f5:f8:cd, Learnt on GE0/0/0
Aug 27 20:00:24  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 20:01:16  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0
Aug 27 20:01:27  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 20:01:44  Vlan 1, MAC 00:0b:86:6e:65:c0, Learnt on GE0/0/0
Aug 27 20:02:07  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 20:02:35  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 20:03:21  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 20:03:22  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 20:03:36  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 20:04:14  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 20:04:18  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 20:04:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 20:05:12  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 20:05:17  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 20:05:22  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 20:05:27  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 20:05:35  Vlan 1, MAC 00:0c:29:f5:f8:cd, Aged
Aug 27 20:05:37  Vlan 1, MAC 00:0c:29:66:a6:c9, Learnt on GE0/0/0
Aug 27 20:05:37  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 20:05:42  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 20:05:47  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 20:05:54  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 20:07:14  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 20:08:04  Vlan 1, MAC 00:0b:86:6e:65:c0, Aged
Aug 27 20:08:43  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 20:09:12  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 20:09:27  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 20:09:31  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 20:09:43  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 20:09:48  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 20:10:05  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 20:10:07  Vlan 1, MAC 00:0c:29:f5:f8:cd, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 20:10:16  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 20:10:59  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 20:11:09  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 20:11:20  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 20:11:32  Vlan 1, MAC 00:0c:29:66:a6:c9, Aged
Aug 27 20:11:50  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 20:12:22  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 20:12:25  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 20:12:46  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 20:12:51  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 20:12:54  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 20:13:23  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 20:13:39  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 20:14:00  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 20:14:47  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 20:14:49  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 20:15:38  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 20:16:00  Vlan 1, MAC 6c:f3:7f:cd:17:24, Learnt on GE0/0/0
Aug 27 20:16:10  Vlan 1, MAC 00:0c:29:f5:f8:cd, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 20:17:12  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 20:17:12  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 20:17:32  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 20:18:22  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 20:18:23  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 20:18:25  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 20:19:05  Vlan 1, MAC 28:92:4a:2b:fa:f7, Aged
Aug 27 20:19:06  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 20:19:06  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 20:20:08  Vlan 1, MAC 00:0c:29:f5:f8:cd, Learnt on GE0/0/0
Aug 27 20:20:41  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 20:20:48  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 20:20:52  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 20:21:10  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 20:21:48  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 20:21:54  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 20:22:01  Vlan 1, MAC a0:b3:cc:df:48:db, Learnt on GE0/0/0
Aug 27 20:22:04  Vlan 1, MAC 6c:f3:7f:cd:17:24, Aged
Aug 27 20:22:08  Vlan 1, MAC 00:0b:86:6e:70:44, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 20:22:21  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0
Aug 27 20:23:16  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 20:23:16  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 20:23:59  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 20:24:26  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 20:24:31  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 20:24:54  Vlan 1, MAC 00:0c:29:26:52:1f, Aged
Aug 27 20:25:36  Vlan 1, MAC 00:0c:29:26:52:1f, Learnt on GE0/0/0
Aug 27 20:25:41  Vlan 1, MAC 00:0c:29:f5:f8:cd, Aged
Aug 27 20:26:21  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 20:26:31  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 20:26:31  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 20:26:51  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 20:27:08  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 20:27:29  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 20:27:35  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 20:27:37  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 20:27:53  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged
Aug 27 20:27:53  Vlan 1, MAC a0:b3:cc:df:48:db, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 20:28:12  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 20:28:14  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 20:28:35  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 20:28:46  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 20:29:28  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 20:29:58  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 20:30:40  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 20:31:07  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 20:31:57  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0
Aug 27 20:33:32  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 20:33:36  Vlan 1, MAC 00:0b:86:6c:d5:c0, Learnt on GE0/0/0
Aug 27 20:33:55  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 20:34:07  Vlan 1, MAC 00:0b:86:6d:b4:44, Learnt on GE0/0/0
Aug 27 20:34:15  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 20:34:15  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 20:34:33  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 20:34:34  Vlan 1, MAC 00:0c:29:24:f4:e3, Learnt on GE0/0/0
Aug 27 20:34:54  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 20:34:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 20:35:05  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged
Aug 27 20:35:17  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 20:35:57  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 20:36:33  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 20:37:43  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 20:37:54  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 20:38:04  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 20:38:12  Vlan 1, MAC 00:0c:29:96:67:4b, Learnt on GE0/0/0
Aug 27 20:38:15  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 20:38:47  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 20:39:10  Vlan 1, MAC 00:0b:86:6c:d5:c0, Aged
Aug 27 20:39:12  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 20:39:12  Vlan 1, MAC 00:0c:29:16:ef:49, Aged
Aug 27 20:39:35  Vlan 1, MAC 00:0b:86:6d:b4:44, Aged
Aug 27 20:40:10  Vlan 1, MAC 00:0c:29:24:f4:e3, Aged
Aug 27 20:40:35  Vlan 1, MAC 00:0c:29:60:a1:85, Aged
Aug 27 20:41:10  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 20:41:19  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 20:41:22  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 20:41:57  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 20:42:16  Vlan 1, MAC 00:0c:29:16:ef:49, Learnt on GE0/0/0
Aug 27 20:42:28  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0
Aug 27 20:42:43  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 20:43:33  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 20:43:34  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 20:43:40  Vlan 1, MAC 00:0c:29:96:67:4b, Aged
Aug 27 20:44:25  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 20:44:34  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 20:45:10  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 20:45:42  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 20:46:33  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 20:47:30  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 20:47:54  Vlan 1, MAC 00:0c:29:79:55:6a, Aged
Aug 27 20:48:15  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 20:48:34  Vlan 1, MAC 00:0c:29:79:55:6a, Learnt on GE0/0/0
Aug 27 20:48:35  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 20:49:21  Vlan 1, MAC 00:15:5d:06:ab:01, Aged
Aug 27 20:49:35  Vlan 1, MAC 00:15:5d:06:ab:01, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 20:49:45  Vlan 1, MAC 28:92:4a:2b:fa:f7, Aged
Aug 27 20:50:11  Vlan 1, MAC 00:0c:29:f5:f8:cd, Learnt on GE0/0/0
Aug 27 20:50:50  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 20:51:37  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 20:51:49  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 20:52:13  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 20:52:21  Vlan 1, MAC 24:de:c6:cb:0c:f6, Learnt on GE0/0/0
Aug 27 20:52:32  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 20:52:42  Vlan 1, MAC a0:b3:cc:df:48:db, Learnt on GE0/0/0
Aug 27 20:52:48  Vlan 1, MAC 00:0b:86:6e:70:44, Aged
Aug 27 20:54:21  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 20:54:54  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 20:55:00  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 20:55:04  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 20:55:23  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 20:55:37  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 20:55:45  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 20:56:21  Vlan 1, MAC 00:0c:29:f5:f8:cd, Aged
Aug 27 20:56:58  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 20:57:18  Vlan 1, MAC 00:13:d4:33:5b:75, Learnt on GE0/0/0
Aug 27 20:57:21  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0
Aug 27 20:57:26  Vlan 1, MAC 00:0b:86:6d:84:c0, Learnt on GE0/0/0
Aug 27 20:57:52  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 20:58:33  Vlan 1, MAC 24:de:c6:cb:0c:f6, Aged
Aug 27 20:58:33  Vlan 1, MAC a0:b3:cc:df:48:db, Aged
Aug 27 20:59:13  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 20:59:40  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 21:00:15  Vlan 1, MAC 00:9c:02:ab:e7:ef, Learnt on GE0/0/0
Aug 27 21:01:20  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 21:02:18  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 21:02:29  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 21:02:31  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0
Aug 27 21:02:38  Vlan 1, MAC 00:9c:02:9f:68:6b, Learnt on GE0/0/0
Aug 27 21:02:44  Vlan 1, MAC 00:90:fb:4b:8d:66, Learnt on GE0/0/0
Aug 27 21:03:31  Vlan 1, MAC 00:13:d4:33:5b:75, Aged
Aug 27 21:03:35  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 21:03:39  Vlan 1, MAC 00:0c:29:c8:b7:3d, Learnt on GE0/0/0
Aug 27 21:03:39  Vlan 1, MAC 00:0b:86:6d:84:c0, Aged


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 21:04:35  Vlan 1, MAC 00:02:2a:e2:57:60, Aged
Aug 27 21:05:02  Vlan 1, MAC 00:0b:86:6d:b4:44, Learnt on GE0/0/0
Aug 27 21:05:37  Vlan 1, MAC 00:0c:29:66:a6:c9, Learnt on GE0/0/0
Aug 27 21:05:47  Vlan 1, MAC 00:0c:29:3e:43:72, Learnt on GE0/0/0
Aug 27 21:05:59  Vlan 1, MAC 00:0c:29:07:7f:11, Aged
Aug 27 21:06:17  Vlan 1, MAC 00:1a:1e:0f:92:40, Learnt on GE0/0/0
Aug 27 21:06:37  Vlan 1, MAC 00:9c:02:ab:e7:ef, Aged
Aug 27 21:06:37  Vlan 1, MAC f8:bc:12:e0:ba:b1, Aged
Aug 27 21:06:48  Vlan 1, MAC f8:bc:12:e0:ba:b1, Learnt on GE0/0/0
Aug 27 21:06:54  Vlan 1, MAC 00:15:5d:06:a9:0e, Aged
Aug 27 21:07:02  Vlan 1, MAC 00:15:5d:06:a9:0e, Learnt on GE0/0/0
Aug 27 21:08:18  Vlan 1, MAC 00:16:01:19:29:cc, Learnt on GE0/0/0
Aug 27 21:08:34  Vlan 1, MAC 00:9c:02:9f:68:6b, Aged
Aug 27 21:08:45  Vlan 1, MAC 08:11:96:8a:54:6c, Learnt on GE0/0/0
Aug 27 21:08:45  Vlan 1, MAC 00:16:c7:8d:c8:bb, Learnt on GE0/0/0
Aug 27 21:08:45  Vlan 1, MAC 00:12:43:ba:d2:00, Learnt on GE0/0/0
Aug 27 21:09:08  Vlan 1, MAC 00:0c:29:c8:b7:3d, Aged
Aug 27 21:09:09  Vlan 1, MAC 00:02:2a:e2:57:60, Learnt on GE0/0/0
Aug 27 21:09:23  Vlan 1, MAC 00:0c:29:07:7f:11, Learnt on GE0/0/0


MAC Learning Logs
-----------------
Time             Log
----             ---
Aug 27 21:09:30  Vlan 1, MAC 00:0c:29:10:06:3b, Aged
Aug 27 21:11:46  Vlan 1, MAC 00:1a:1e:0f:92:40, Aged
Aug 27 21:11:49  Vlan 1, MAC 00:0c:29:66:a6:c9, Aged
Aug 27 21:13:58  Vlan 1, MAC 00:16:01:19:29:cc, Aged
Aug 27 21:14:02  Vlan 1, MAC 00:0b:86:6c:d5:c0, Learnt on GE0/0/0
Aug 27 21:14:02  Vlan 1, MAC 6c:f3:7f:c5:a7:da, Aged
Aug 27 21:14:16  Vlan 1, MAC 28:92:4a:2b:fa:f7, Learnt on GE0/0/0
Aug 27 21:14:22  Vlan 1, MAC 00:12:43:ba:d2:00, Aged
Aug 27 21:14:38  Vlan 1, MAC 00:16:c7:8d:c8:bb, Aged
Aug 27 21:14:57  Vlan 1, MAC 00:0c:29:60:a1:85, Learnt on GE0/0/0
Aug 27 21:15:05  Vlan 1, MAC 00:0c:29:3e:43:72, Aged
Aug 27 21:15:29  Vlan 1, MAC 00:0b:86:6e:70:44, Learnt on GE0/0/0
Aug 27 21:15:32  Vlan 1, MAC 00:0b:86:6d:b4:44, Aged
Aug 27 21:15:37  Vlan 1, MAC 00:0c:29:10:06:3b, Learnt on GE0/0/0
Aug 27 21:16:03  Vlan 1, MAC f8:bc:12:e0:ba:be, Aged
Aug 27 21:16:13  Vlan 1, MAC 00:90:fb:4b:8d:66, Aged
Aug 27 21:16:48  Vlan 1, MAC f8:bc:12:e0:ba:be, Learnt on GE0/0/0

show ip dhcp database


DHCP disabled


show ip dhcp binding

DHCP is currently disabled

DHCP is currently disabled

show ip dhcp statistics

DHCP is currently disabled

DHCP is currently disabled

show dhcp-snooping-database


Total DHCP Snoop Entries : 0
Learnt Entries : 0, Static Entries : 0

DHCP Snoop Table
----------------
MAC  IP  BINDING-STATE  LEASE-TIME  VLAN-ID  INTERFACE
---  --  -------------  ----------  -------  ---------

show dhcp-snooping-database summary


Total DHCP Snoop Entries : 0
Learnt Entries : 0, Static Entries : 0


show gvrp interfaces


Interface GVRP info
-------------------
Interface  State  Registrar Mode
---------  -----  --------------

show stacking internal member all


Member-id: 0
------------
Device route table:

Route Table for Device-Id: 0

Target device-id  Interface  Next-hop device-id
----------------  ---------  ------------------



Multicast filter table:

Device-Id: 0

Source device-id  Unblocked-ports
----------------  ---------------
0                 None


show stacking members member all


Member-id: 0
------------
Stack status: Active, Stack Id: 000b869504b753d5f5e0
Stack uptime: 18 hours 9 minutes 55 seconds
Id    Role       MAC Address        Priority  State     Model            Serial
--    ----       -----------        --------  -----     -----            ------
0  *  Primary    00:0b:86:95:04:b7  128       Active    ArubaS1500-12P   CD0002466


show stacking neighbors member all


Member-id: 0
------------
Stacking neighbors does not exist.


show stacking topology member all


Member-id: 0
------------
Stacking topology does not exist.


show stacking internal member all


Member-id: 0
------------
Device route table:

Route Table for Device-Id: 0

Target device-id  Interface  Next-hop device-id
----------------  ---------  ------------------



Multicast filter table:

Device-Id: 0

Source device-id  Unblocked-ports
----------------  ---------------
0                 None


show stacking interface member all


Member-id: 0
------------
stack1/1
--------
stack1/1 is administratively Enabled, link is Down, line protocol is Down
Speed: N/A, MTU: 9224 bytes, Link flaps: 0
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago
Link status last changed:       0d 00:00:00 ago
Statistics:
    Received 0 frames, 0 octets
    0 pps, 0 bps
    0 broadcasts, 0 runts, 0 giants, 0 throttles
    0 error octets, 0 CRC frames
    0 multicast, 0 unicast
    Transmitted 0 frames, 0 octets
    0 pps, 0 bps
    0 broadcasts, 0 throttles
    0 multicast, 0 unicast
    0 errors octets, 0 deferred
    0 collisions, 0 late collisions



show stacking interface transceiver member all


Member-id: 0
------------
stack1/1
--------
Transceiver information not present for interface stack1/1


show stacking interface statistics member all


Member-id: 0
------------
stack1/1
--------
Last update of counters:        0d 00:00:00 ago
Last clearing of counters:      0d 00:00:00 ago
Received Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 error frames, 0 error octets, 0 CRC events, 0 runts, 0 giants, 0 throttles
    0 drop events

Transmitted Statistics:
    0 frames, 0 octets
    0 pps, 0 bps
    0 unicast, 0 multicast, 0 broadcast
    0 throttles, 0 deferred
    0 collisions, 0 multiple collisions, 0 late collisions

Received and Transmitted Frame Size Statistics:
0 64 octet, 0 65-127 octet, 0 128-255 octet, 0 256-511 octet, 0 512-1023 octet, 0 1024-max octet



show stacking ASP-stats all member all


Member-id: 0
------------
stack1/1
--------
MAC address: 00:0b:86:95:04:b7
Operational state: Down
Neighbor transitions: 0 Up, 0 Down

Statistics:
        Received:
         0 Keepalives
         0 Route updates
         0 Packets received

        Transmitted:
         0 Keepalives
         0 Route updates
         0 Packets transmitted
         0 Transmission errors



show ip source-guard


IPSG interface Info
-------------------
Interface   IPSG
----------  ----

show aruba-central


Aruba Central
-------------
Parameter                Value
---------                -----
Aruba Central IP/URL     internal.central.arubanetworks.com
Connection Status        Up
Mode                     Monitor
Time of last disconnect  Wed Aug 27 12:12:27 2014



show log errorlog all
Aug 27 03:06:05 <nanny 399816>  <ERRS> |nanny|  Terminating process /mswitch/bin/profmgr, pid 1433
Aug 27 03:06:05 <nanny 399816>  <ERRS> |nanny|  Terminating process /mswitch/bin/udbserver, pid 1436
Aug 27 03:06:05 <nanny 399816>  <ERRS> |nanny|  Terminating process /mswitch/bin/ntpwrap, pid 1438
Aug 27 03:06:07 <authmgr 199802>  <ERRS> |authmgr|  main.c, main:510: Auth started/restarted or switchover happened
Aug 27 03:06:09 <im 399803>  <ERRS> |im|  An internal system error has occurred at file ../ncfg_profmgr.c function ncfg_profmgr_setup_prof_socket line 548 error Unable to bind socket: No such file or directory.
Aug 27 03:06:09 <im 330006>  <ERRS> |im|  Connection failure with profile manager, Unable to bind socket
Aug 27 03:06:09 <im 399803>  <ERRS> |im|  An internal system error has occurred at file ncfg_gcore.c function ncfg_gated_profmgr_connect line 86 error ncfg_gated_profmgr_connect:ERROR: ncfg_init failed:14.
Aug 27 03:06:53 <im 399803>  <ERRS> |im|  An internal system error has occurred at file ../ncfg_profmgr.c function ncfg_profmgr_setup_prof_socket line 548 error Unable to bind socket: No such file or directory.
Aug 27 03:06:53 <im 330006>  <ERRS> |im|  Connection failure with profile manager, Unable to bind socket
Aug 27 03:06:53 <im 399803>  <ERRS> |im|  An internal system error has occurred at file ncfg_gcore.c function ncfg_gated_profmgr_connect line 86 error ncfg_gated_profmgr_connect:ERROR: ncfg_init failed:14.
Aug 27 03:06:53 <profmgr 334001>  <CRIT> |profmgr| Unable to read regulatory domain data from hardware
Aug 27 03:06:55 <profmgr 334001>  <CRIT> |profmgr| Unable to read regulatory domain data from hardware
Aug 27 03:06:55 <profmgr 399803>  <ERRS> |profmgr|  An internal system error has occurred at file profmgr_stk.c function profmgr_nl_sub_cb line 152 error Our role is MASTER, re-syncing with certificate-manager .
Aug 27 03:06:58 <certmgr 118004>  <ERRS> |certmgr|  Received unknown message
Aug 27 03:06:59 <profmgr 399803>  <ERRS> |profmgr|  An internal system error has occurred at file profmgr_stk.c function profmgr_nl_sub_cb line 152 error Our role is MASTER, re-syncing with certificate-manager .
Aug 27 03:07:01 <certmgr 118004>  <ERRS> |certmgr|  Received unknown message
Aug 27 03:07:04 <certmgr 118004>  <ERRS> |certmgr|  Received unknown message
Aug 27 03:07:10 <ChassisManager 335308>  <ALRT> |ChassisManager|  ArubaS1500-12P detected on slot 0
Aug 27 03:07:10 <ChassisManager 335309>  <ALRT> |ChassisManager|  Power supply  detected on slot 0
Aug 27 03:07:15 <authmgr 124014>  <ERRS> |authmgr|  Taking Server 'tpl-CPPM-Pub' out of service for 10 mins. ErrCode=-1.
Aug 27 03:07:15 <authmgr 124015>  <ERRS> |authmgr|  Bringing Server 'tpl-CPPM-Pub' back in service after the dead-timeout interval.
Aug 27 21:16:41 <profmgr 334001>  <CRIT> |profmgr| Unable to read regulatory domain data from hardware
Large files under /tmp======================
                                            No excessively large files found under /tmp


show running-config
Building Configuration...

#
# Configuration file for ArubaOS
version 7.3
enable secret "******"
hostname "MAS1500-1"
clock timezone PST -8
location "Building1.floor1"
controller config 1
ip access-list eth validuserethacl
  permit any
  permit any
!
netservice svc-dhcp udp 67 68
netservice svc-dns udp 53
netservice svc-ftp tcp 21
netservice svc-h323-tcp tcp 1720
netservice svc-h323-udp udp 1718 1719
netservice svc-http tcp 80
netservice svc-https tcp 443
netservice svc-icmp 1
netservice svc-kerberos udp 88
netservice svc-natt udp 4500
netservice svc-ntp udp 123
netservice svc-sip-tcp tcp 5060
netservice svc-sip-udp udp 5060
netservice svc-sips tcp 5061
netservice svc-smtp tcp 25
netservice svc-ssh tcp 22
netservice svc-telnet tcp 23
netservice svc-tftp udp 69
netservice svc-vocera udp 5002
ip access-list stateless allowall-stateless
  any any any  permit
!
ip access-list stateless dhcp-acl-stateless
  any any svc-dhcp  permit
!
ip access-list stateless dns-acl-stateless
  any any svc-dns  permit
!
ip access-list stateless http-acl-stateless
  any any svc-http  permit
!
ip access-list stateless https-acl-stateless
  any any svc-https  permit
!
ip access-list stateless icmp-acl-stateless
  any any svc-icmp  permit
!
ip access-list stateless logon-control-stateless
  any any svc-icmp  permit
  any any svc-dns  permit
  any any svc-dhcp  permit
  any any svc-natt  permit
!
ip access-list stateless tpl-CPPM-Pub-mac-auth-acl
  any any any  permit
!
ip access-list session validuser
  network 169.254.0.0 255.255.0.0 any any  deny
  any any any  permit
!
user-role authenticated
 access-list stateless allowall-stateless
!
user-role denyall
!
user-role denydhcp
!
user-role guest
 access-list stateless http-acl-stateless
 access-list stateless https-acl-stateless
 access-list stateless dhcp-acl-stateless
 access-list stateless icmp-acl-stateless
 access-list stateless dns-acl-stateless
!
user-role logon
 access-list stateless logon-control-stateless
!
user-role preauth
!
user-role tpl-CPPM-Pub-mac-auth-role
 vlan 1
 access-list stateless tpl-CPPM-Pub-mac-auth-acl
!
!

crypto ipsec transform-set default-boc-bm-transform esp-3des esp-sha-hmac
crypto ipsec transform-set default-rap-transform esp-aes256 esp-sha-hmac


mgmt-user admin root 9371bce201d56a4599019587596be290ea6e3bd0f75ac77cb7



firewall disable-stateful-sip-processing
firewall disable-stateful-h323-processing
firewall disable-stateful-sccp-processing
!
ip domain lookup
!
!
country US
aaa rfc-3576-server "114.179.12.251"
   key b6679b386ff798b2cbf67bf9386671524ca9c6ddadf458fb
!
aaa authentication mac "default"
!
aaa authentication mac "tpl-CPPM-Pub"
!
aaa authentication dot1x "default"
!
aaa authentication-server radius "tpl-CPPM-Pub"
   host "114.179.12.251"
   key 7936966a78e55813f10ef73c7be3605eeddd0a62cdd26e91
!
aaa server-group "default"
 auth-server Internal
 set role condition role value-of
!
aaa server-group "tpl-CPPM-Pub"
 auth-server tpl-CPPM-Pub
!
aaa profile "default"
!
aaa profile "tpl-CPPM-Pub"
   authentication-mac "tpl-CPPM-Pub"
   mac-default-role "tpl-CPPM-Pub-mac-auth-role"
   mac-server-group "tpl-CPPM-Pub"
   radius-accounting "tpl-CPPM-Pub"
   radius-interim-accounting
   rfc-3576-server "114.179.12.251"
!
aaa authentication captive-portal "default"
!
aaa authentication vpn "default"
!
aaa authentication mgmt
!
aaa authentication wired
!
web-server
!
aaa password-policy mgmt
!
traceoptions
!
qos-profile "default"
!
policer-profile "default"
!
ip-profile
   default-gateway import dhcp
!
interface-profile ospf-profile "default"
   area 0.0.0.0
!
interface-profile pim-profile "default"
!
interface-profile igmp-profile "default"
!
stack-profile
!
ipv6-profile
!
activate-service-firmware
!
aruba-central
!
interface-profile switching-profile "default"
!
interface-profile switching-profile "SWITCHINGPROF_0/0/5"
   access-vlan 300
!
interface-profile switching-profile "SWITCHINGPROF_0/0/6"
   access-vlan 300
!
interface-profile switching-profile "SWITCHINGPROF_0/0/7"
   access-vlan 300
!
interface-profile switching-profile "SWITCHINGPROF_0/0/8"
   access-vlan 300
!
interface-profile switching-profile "SWITCHINGPROF_0/0/9"
   access-vlan 300
!
interface-profile poe-profile "default"
!
interface-profile poe-profile "poe-factory-initial"
   enable
!
interface-profile poe-profile "poe-factory-initial_1"
   enable
!
interface-profile poe-profile "poe-factory-initial_10"
   enable
!
interface-profile poe-profile "poe-factory-initial_11"
   enable
!
interface-profile poe-profile "poe-factory-initial_12"
   enable
!
interface-profile poe-profile "poe-factory-initial_13"
   enable
!
interface-profile poe-profile "poe-factory-initial_14"
   enable
!
interface-profile poe-profile "poe-factory-initial_15"
   enable
!
interface-profile poe-profile "poe-factory-initial_16"
   enable
!
interface-profile poe-profile "poe-factory-initial_17"
   enable
!
interface-profile poe-profile "poe-factory-initial_2"
   enable
!
interface-profile poe-profile "poe-factory-initial_3"
   enable
!
interface-profile poe-profile "poe-factory-initial_4"
   enable
!
interface-profile poe-profile "poe-factory-initial_5"
   enable
!
interface-profile poe-profile "poe-factory-initial_6"
   enable
!
interface-profile poe-profile "poe-factory-initial_7"
   enable
!
interface-profile poe-profile "poe-factory-initial_8"
   enable
!
interface-profile poe-profile "poe-factory-initial_9"
   enable
!
interface-profile enet-link-profile "default"
!
interface-profile lldp-profile "default"
!
interface-profile lldp-profile "lldp-factory-initial"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_1"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_10"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_11"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_12"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_13"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_14"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_15"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_16"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_17"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_2"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_3"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_4"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_5"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_6"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_7"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_8"
   lldp transmit
   lldp receive
   med enable
!
interface-profile lldp-profile "lldp-factory-initial_9"
   lldp transmit
   lldp receive
   med enable
!
interface-profile mstp-profile "default"
!
interface-profile mstp-profile "tpl-CPPM-Pub"
   portfast
!
interface-profile pvst-port-profile "default"
!
vlan-profile dhcp-snooping-profile "default"
!
vlan-profile mld-snooping-profile "default"
!
vlan-profile igmp-snooping-profile "default"
!
vlan-profile igmp-snooping-profile "igmp-snooping-factory-initial"
!
spanning-tree
   mode mstp
!
gvrp
!
mstp
!
lacp
!
vlan "1"
   igmp-snooping-profile "igmp-snooping-factory-initial"
!
vlan "300"
!
interface gigabitethernet "0/0/0"
   lldp-profile "lldp-factory-initial_9"
   poe-profile "poe-factory-initial_9"
!
interface gigabitethernet "0/0/1"
   lldp-profile "lldp-factory-initial_10"
   poe-profile "poe-factory-initial_10"
!
interface gigabitethernet "0/0/2"
   lldp-profile "lldp-factory-initial_7"
   poe-profile "poe-factory-initial_7"
!
interface gigabitethernet "0/0/3"
   lldp-profile "lldp-factory-initial_8"
   poe-profile "poe-factory-initial_8"
!
interface gigabitethernet "0/0/4"
   lldp-profile "lldp-factory-initial_13"
   poe-profile "poe-factory-initial_13"
!
interface gigabitethernet "0/0/5"
   lldp-profile "lldp-factory-initial_14"
   poe-profile "poe-factory-initial_14"
   switching-profile "SWITCHINGPROF_0/0/5"
!
interface gigabitethernet "0/0/6"
   lldp-profile "lldp-factory-initial_11"
   poe-profile "poe-factory-initial_11"
   switching-profile "SWITCHINGPROF_0/0/6"
!
interface gigabitethernet "0/0/7"
   lldp-profile "lldp-factory-initial_12"
   poe-profile "poe-factory-initial_12"
   switching-profile "SWITCHINGPROF_0/0/7"
!
interface gigabitethernet "0/0/8"
   lldp-profile "lldp-factory-initial_16"
   poe-profile "poe-factory-initial_16"
   switching-profile "SWITCHINGPROF_0/0/8"
!
interface gigabitethernet "0/0/9"
   lldp-profile "lldp-factory-initial_17"
   poe-profile "poe-factory-initial_17"
   switching-profile "SWITCHINGPROF_0/0/9"
!
interface gigabitethernet "0/0/10"
   lldp-profile "lldp-factory-initial_2"
   poe-profile "poe-factory-initial_2"
!
interface gigabitethernet "0/0/11"
   lldp-profile "lldp-factory-initial_15"
   poe-profile "poe-factory-initial_15"
!
interface gigabitethernet "0/0/12"
!
interface gigabitethernet "0/0/13"
!
interface gigabitethernet "0/0/14"
!
interface gigabitethernet "0/0/15"
!
interface gigabitethernet "0/0/16"
!
interface gigabitethernet "0/0/17"
!
interface gigabitethernet "0/0/18"
!
interface gigabitethernet "0/0/19"
!
interface gigabitethernet "0/0/20"
!
interface gigabitethernet "0/0/21"
!
interface gigabitethernet "0/0/22"
!
interface gigabitethernet "0/0/23"
!
interface gigabitethernet "0/0/24"
!
interface gigabitethernet "0/0/25"
!
interface gigabitethernet "0/0/26"
!
interface gigabitethernet "0/0/27"
!
interface gigabitethernet "0/0/28"
!
interface gigabitethernet "0/0/29"
!
interface gigabitethernet "0/0/30"
!
interface gigabitethernet "0/0/31"
!
interface gigabitethernet "0/0/32"
!
interface gigabitethernet "0/0/33"
!
interface gigabitethernet "0/0/34"
!
interface gigabitethernet "0/0/35"
!
interface gigabitethernet "0/0/36"
!
interface gigabitethernet "0/0/37"
!
interface gigabitethernet "0/0/38"
!
interface gigabitethernet "0/0/39"
!
interface gigabitethernet "0/0/40"
!
interface gigabitethernet "0/0/41"
!
interface gigabitethernet "0/0/42"
!
interface gigabitethernet "0/0/43"
!
interface gigabitethernet "0/0/44"
!
interface gigabitethernet "0/0/45"
!
interface gigabitethernet "0/0/46"
!
interface gigabitethernet "0/0/47"
!
interface gigabitethernet "0/1/0"
   lldp-profile "lldp-factory-initial_6"
   poe-profile "poe-factory-initial_6"
!
interface gigabitethernet "0/1/1"
   lldp-profile "lldp-factory-initial_5"
   poe-profile "poe-factory-initial_5"
!
interface gigabitethernet "0/1/2"
   lldp-profile "lldp-factory-initial_4"
   poe-profile "poe-factory-initial_4"
!
interface gigabitethernet "0/1/3"
   lldp-profile "lldp-factory-initial_3"
   poe-profile "poe-factory-initial_3"
!
interface vlan "1"
   ip address dhcp-client
!
interface vlan "300"
!
interface-group gigabitethernet "default"
   apply-to ALL
   lldp-profile "lldp-factory-initial_1"
   poe-profile "poe-factory-initial_1"
!
interface-group gigabitethernet "tpl-CPPM-Pub"
   apply-to 0/0/5
   mstp-profile "tpl-CPPM-Pub"
   aaa-profile "tpl-CPPM-Pub"
   no trusted porta
!

snmp-server view ALL oid-tree iso included
snmp-server group ALLPRIV v1 read ALL notify ALL
snmp-server group ALLPRIV v2c read ALL notify ALL
snmp-server group ALLPRIV v3 noauth read ALL notify ALL
snmp-server group AUTHPRIV v3 priv read ALL notify ALL
snmp-server group AUTHNOPRIV v3 auth read ALL notify ALL

snmp-server enable trap

process monitor log
end

(MAS1500-1) #