1--- ArubaOS 8.5.0.0_70258 2-- vim:set ts=4 sw=4: 3 WLSX-USER6-MIB DEFINITIONS ::= BEGIN 4 5 IMPORTS 6 TEXTUAL-CONVENTION FROM SNMPv2-TC 7 8 MODULE-IDENTITY, 9 OBJECT-TYPE, 10 snmpModules, 11 Integer32, 12 Unsigned32, 13 Counter32, 14 IpAddress, 15 NOTIFICATION-TYPE 16 FROM SNMPv2-SMI 17 18 TDomain, 19 DisplayString, 20 PhysAddress, 21 TAddress, 22 TimeInterval, 23 RowStatus, 24 StorageType, 25 TestAndIncr, 26 MacAddress, 27 TruthValue 28 FROM SNMPv2-TC 29 30 OBJECT-GROUP 31 FROM SNMPv2-CONF 32 33 ArubaAuthenticationMethods, 34 ArubaSubAuthenticationMethods, 35 ArubaEncryptionType, 36 ArubaPhyType, 37 ArubaHTMode, 38 ArubaUserForwardMode 39 FROM ARUBA-TC 40 wlsxEnterpriseMibModules 41 FROM ARUBA-MIB 42 wlsxSwitchMIB 43 FROM WLSX-SWITCH-MIB 44 wlanESSID 45 FROM WLSX-WLAN-MIB; 46 47 wlsxUser6MIB MODULE-IDENTITY 48 LAST-UPDATED "1001261806Z" 49 ORGANIZATION "Aruba Wireless Networks" 50 CONTACT-INFO 51 "Postal: 1322 Crossman Avenue 52 Sunnyvale, CA 94089 53 E-mail: dl-support@arubanetworks.com 54 Phone: +1 408 227 4500" 55 DESCRIPTION 56 "This MIB module defines MIB objects which provide 57 information about the IPv6 users in an Aruba controller." 58 REVISION "1001261806Z" 59 DESCRIPTION 60 "The initial revision." 61 ::= { wlsxEnterpriseMibModules 14 } 62 63 wlsxUser6AllInfoGroup OBJECT IDENTIFIER ::= { wlsxUser6MIB 1 } 64 wlsxUser6InfoGroup OBJECT IDENTIFIER ::= { wlsxSwitchMIB 4 } 65 66-- wlsxUser6AllInfoGroup contains information about the users in the controller. 67 68 wlsxTotalNumOfUsers6 OBJECT-TYPE 69 SYNTAX Unsigned32 70 MAX-ACCESS read-only 71 STATUS current 72 DESCRIPTION 73 " 74 Total Number of the users. 75 " 76 ::= { wlsxUser6AllInfoGroup 1 } 77 78 wlsxUser6Table OBJECT-TYPE 79 SYNTAX SEQUENCE OF WlsxUser6Entry 80 MAX-ACCESS not-accessible 81 STATUS current 82 DESCRIPTION 83 " 84 This Table lists all the users (both wired and wireless) currently 85 connected to the controller. Users are identified by their MAC 86 address and IP address. 87 " 88 89 ::= { wlsxUser6AllInfoGroup 2 } 90 91 wlsxUser6Entry OBJECT-TYPE 92 SYNTAX WlsxUser6Entry 93 MAX-ACCESS not-accessible 94 STATUS current 95 DESCRIPTION 96 "User Entry" 97 INDEX { nUser6PhyAddress, nUser6IpAddress } 98 ::= { wlsxUser6Table 1 } 99 100 WlsxUser6Entry ::= 101 SEQUENCE { 102 nUser6PhyAddress MacAddress, 103 nUser6IpAddress DisplayString, 104 nUser6Name DisplayString, 105 nUser6Role DisplayString, 106 nUser6UpTime TimeTicks, 107 nUser6AuthenticationMethod ArubaAuthenticationMethods, 108 nUser6SubAuthenticationMethod ArubaSubAuthenticationMethods, 109 nUser6AuthServerName DisplayString, 110 nUser6ExtVPNAddress IpAddress, 111 nUser6ApLocation DisplayString, 112 nUser6ApBSSID MacAddress, 113 nUser6IsOnHomeAgent TruthValue, 114 nUser6HomeAgentIpAddress IpAddress, 115 nUser6MobilityStatus INTEGER, 116 nUser6HomeVlan Integer32, 117 nUser6DefaultVlan Integer32, 118 nUser6AssignedVlan Integer32, 119 nUser6BWContractName DisplayString, 120 nUser6BWContractUsage INTEGER, 121 nUser6BWContractId Integer32, 122 nUser6IsProxyArpEnabled TruthValue, 123 nUser6CurrentVlan Integer32, 124 nUser6IsWired TruthValue, 125 nUser6ConnectedSlot Integer32, 126 nUser6ConnectedPort Integer32, 127 nUser6PhyType ArubaPhyType, 128 nUser6MobilityDomainName DisplayString, 129 nUser6UPBWContractName DisplayString, 130 nUser6UPBWContractUsage INTEGER, 131 nUser6UPBWContractId Integer32, 132 nUser6DNBWContractName DisplayString, 133 nUser6DNBWContractUsage INTEGER, 134 nUser6DNBWContractId Integer32, 135 nUser6HTMode ArubaHTMode, 136 nUser6DeviceID DisplayString, 137 nUser6DeviceType DisplayString, 138 nUser6ConnectedModule Integer32, 139 nUser6RxDataPkts64 Counter64, 140 nUser6TxDataPkts64 Counter64, 141 nUser6RxDataOctets64 Counter64, 142 nUser6TxDataOctets64 Counter64, 143 nUser6ForwardMode ArubaUserForwardMode, 144 nUser6EncryptionMethod ArubaEncryptionType, 145 nVIAUser6DeviceID MacAddress 146 } 147 148 nUser6PhyAddress OBJECT-TYPE 149 SYNTAX MacAddress 150 MAX-ACCESS not-accessible 151 STATUS current 152 DESCRIPTION 153 " 154 MAC address of the station from which the user connected to 155 the controller. 156 " 157 ::= { wlsxUser6Entry 1 } 158 159 nUser6IpAddress OBJECT-TYPE 160 SYNTAX DisplayString(SIZE(0..128)) 161 MAX-ACCESS not-accessible 162 STATUS current 163 DESCRIPTION 164 " 165 IPv6 Address of the user. 166 " 167 ::= { wlsxUser6Entry 2 } 168 169 nUser6Name OBJECT-TYPE 170 SYNTAX DisplayString(SIZE(0..128)) 171 MAX-ACCESS read-only 172 STATUS current 173 DESCRIPTION 174 " 175 Name of the User. 176 " 177 ::= { wlsxUser6Entry 3 } 178 179 nUser6Role OBJECT-TYPE 180 SYNTAX DisplayString(SIZE(0..64)) 181 MAX-ACCESS read-only 182 STATUS current 183 DESCRIPTION 184 " 185 The Role configured for this user. 186 " 187 ::= { wlsxUser6Entry 4 } 188 189 nUser6UpTime OBJECT-TYPE 190 SYNTAX TimeTicks 191 MAX-ACCESS read-only 192 STATUS current 193 DESCRIPTION 194 " 195 Time since the user connected to the controller. 196 " 197 ::= { wlsxUser6Entry 5 } 198 199 nUser6AuthenticationMethod OBJECT-TYPE 200 SYNTAX ArubaAuthenticationMethods 201 MAX-ACCESS read-only 202 STATUS current 203 DESCRIPTION 204 " 205 Authentication mechanism used by the user to connect to the 206 controller. 207 " 208 ::= { wlsxUser6Entry 6 } 209 210 nUser6SubAuthenticationMethod OBJECT-TYPE 211 SYNTAX ArubaSubAuthenticationMethods 212 MAX-ACCESS read-only 213 STATUS current 214 DESCRIPTION 215 " 216 Sub Authentication Method 217 " 218 ::= { wlsxUser6Entry 7 } 219 220 nUser6AuthServerName OBJECT-TYPE 221 SYNTAX DisplayString(SIZE(0..32)) 222 MAX-ACCESS read-only 223 STATUS current 224 DESCRIPTION 225 " 226 Name of the authentication server used to authenticate 227 the user. 228 " 229 ::= { wlsxUser6Entry 8 } 230 231 nUser6ExtVPNAddress OBJECT-TYPE 232 SYNTAX IpAddress 233 MAX-ACCESS read-only 234 STATUS current 235 DESCRIPTION 236 " 237 External VPN IP Address, if this is a VPN user or 0.0.0.0 if not. 238 " 239 ::= { wlsxUser6Entry 9 } 240 241 nUser6ApLocation OBJECT-TYPE 242 SYNTAX DisplayString(SIZE(0..32)) 243 MAX-ACCESS read-only 244 STATUS current 245 DESCRIPTION 246 " 247 Location of the access point to 248 which the user is associated. 249 " 250 ::= { wlsxUser6Entry 10 } 251 252 nUser6ApBSSID OBJECT-TYPE 253 SYNTAX MacAddress 254 MAX-ACCESS read-only 255 STATUS current 256 DESCRIPTION 257 " 258 BSSID of the access point, which 259 the user used to connect to the controller. 260 " 261 ::= { wlsxUser6Entry 11 } 262 263 nUser6IsOnHomeAgent OBJECT-TYPE 264 SYNTAX TruthValue 265 MAX-ACCESS read-only 266 STATUS current 267 DESCRIPTION 268 " 269 The Object will indicate if the controller is the home controller 270 for the user or not. 271 " 272 ::= { wlsxUser6Entry 12 } 273 274 nUser6HomeAgentIpAddress OBJECT-TYPE 275 SYNTAX IpAddress 276 MAX-ACCESS read-only 277 STATUS current 278 DESCRIPTION 279 " 280 The Home agent IP Address of the user. If this user is already on 281 the home controller, then this IP is the controller IP else it 282 is the home controller IP address. 283 284 " 285 ::= { wlsxUser6Entry 13 } 286 287 nUser6MobilityStatus OBJECT-TYPE 288 SYNTAX INTEGER { 289 visitor(1), 290 away(2), 291 associated(3), 292 wired(4), 293 wireless(5) 294 } 295 MAX-ACCESS read-only 296 STATUS current 297 DESCRIPTION 298 " 299 The Mobility Status of the User. 300 301 " 302 ::= { wlsxUser6Entry 14 } 303 304 nUser6HomeVlan OBJECT-TYPE 305 SYNTAX Integer32 306 MAX-ACCESS read-only 307 STATUS current 308 DESCRIPTION 309 " 310 Home VLAN of the User. If the user is on the home controller 311 then this VLAN will be same as userDefaultVlan. 312 " 313 ::= { wlsxUser6Entry 15 } 314 315 nUser6DefaultVlan OBJECT-TYPE 316 SYNTAX Integer32 317 MAX-ACCESS read-only 318 STATUS current 319 DESCRIPTION 320 " 321 Default VLAN of the User based on the AP configuration. 322 " 323 ::= { wlsxUser6Entry 16 } 324 325 nUser6AssignedVlan OBJECT-TYPE 326 SYNTAX Integer32 327 MAX-ACCESS read-only 328 STATUS current 329 DESCRIPTION 330 " 331 This Vlan will be different from the Default VLAN if the user has 332 a derived VLAN Configuration. 333 " 334 ::= { wlsxUser6Entry 17 } 335 336 nUser6BWContractName OBJECT-TYPE 337 SYNTAX DisplayString(SIZE(0..32)) 338 MAX-ACCESS read-only 339 STATUS deprecated 340 DESCRIPTION 341 " 342 Name of the Bandwidth Contract applied to this user. 343 " 344 ::= { wlsxUser6Entry 18 } 345 346 nUser6BWContractUsage OBJECT-TYPE 347 SYNTAX INTEGER { 348 user(1), 349 shared(2) 350 } 351 MAX-ACCESS read-only 352 STATUS deprecated 353 DESCRIPTION 354 " 355 Indicates how the Bandwidth Contract is used. 356 " 357 ::= { wlsxUser6Entry 19 } 358 359 nUser6BWContractId OBJECT-TYPE 360 SYNTAX Integer32 361 MAX-ACCESS read-only 362 STATUS deprecated 363 DESCRIPTION 364 " 365 Bandwidth Contract Id Assigned to the User 366 " 367 ::= { wlsxUser6Entry 20 } 368 369 nUser6IsProxyArpEnabled OBJECT-TYPE 370 SYNTAX TruthValue 371 MAX-ACCESS read-only 372 STATUS current 373 DESCRIPTION 374 " 375 This object will indicate if the controller is proxy ARPing for the 376 user. 377 " 378 ::= { wlsxUser6Entry 21 } 379 380 nUser6CurrentVlan OBJECT-TYPE 381 SYNTAX Integer32 382 MAX-ACCESS read-only 383 STATUS current 384 DESCRIPTION 385 " 386 The VLAN to which the user is currently bound. 387 " 388 ::= { wlsxUser6Entry 22 } 389 390 nUser6IsWired OBJECT-TYPE 391 SYNTAX TruthValue 392 MAX-ACCESS read-only 393 STATUS current 394 DESCRIPTION 395 " 396 Indicates whether this is a wired or wireless user. 397 " 398 ::= { wlsxUser6Entry 23 } 399 400 nUser6ConnectedSlot OBJECT-TYPE 401 SYNTAX Integer32 402 MAX-ACCESS read-only 403 STATUS current 404 DESCRIPTION 405 " 406 The slot to which the user is connected, if wired. 407 " 408 ::= { wlsxUser6Entry 24 } 409 410 nUser6ConnectedPort OBJECT-TYPE 411 SYNTAX Integer32 412 MAX-ACCESS read-only 413 STATUS current 414 DESCRIPTION 415 " 416 The port to which the user is connected, if wired. 417 " 418 ::= { wlsxUser6Entry 25 } 419 420 nUser6PhyType OBJECT-TYPE 421 SYNTAX ArubaPhyType 422 MAX-ACCESS read-only 423 STATUS current 424 DESCRIPTION 425 " 426 The wireless PHY type to which the user is associated, or 'wired'. 427 " 428 ::= { wlsxUser6Entry 26 } 429 430 nUser6MobilityDomainName OBJECT-TYPE 431 SYNTAX DisplayString(SIZE(0..64)) 432 MAX-ACCESS read-only 433 STATUS current 434 DESCRIPTION 435 " 436 The name of mobility domain mobile user belongs to. 437 " 438 ::= { wlsxUser6Entry 27 } 439 440 nUser6UPBWContractName OBJECT-TYPE 441 SYNTAX DisplayString(SIZE(0..32)) 442 MAX-ACCESS read-only 443 STATUS current 444 DESCRIPTION 445 " 446 Name of the Upstream Bandwidth Contract applied to this user. 447 " 448 ::= { wlsxUser6Entry 28 } 449 450 nUser6UPBWContractUsage OBJECT-TYPE 451 SYNTAX INTEGER { 452 user(1), 453 shared(2) 454 } 455 MAX-ACCESS read-only 456 STATUS current 457 DESCRIPTION 458 " 459 Indicates how the Upstream Bandwidth Contract is used. 460 " 461 ::= { wlsxUser6Entry 29 } 462 463 nUser6UPBWContractId OBJECT-TYPE 464 SYNTAX Integer32 465 MAX-ACCESS read-only 466 STATUS current 467 DESCRIPTION 468 " 469 Upstream Bandwidth Contract Id Assigned to the User 470 " 471 ::= { wlsxUser6Entry 30 } 472 473 nUser6DNBWContractName OBJECT-TYPE 474 SYNTAX DisplayString(SIZE(0..32)) 475 MAX-ACCESS read-only 476 STATUS current 477 DESCRIPTION 478 " 479 Name of the Downstream Bandwidth Contract applied to this user. 480 " 481 ::= { wlsxUser6Entry 31 } 482 483 nUser6DNBWContractUsage OBJECT-TYPE 484 SYNTAX INTEGER { 485 user(1), 486 shared(2) 487 } 488 MAX-ACCESS read-only 489 STATUS current 490 DESCRIPTION 491 " 492 Indicates how the Downstream Bandwidth Contract is used. 493 " 494 ::= { wlsxUser6Entry 32 } 495 496 nUser6DNBWContractId OBJECT-TYPE 497 SYNTAX Integer32 498 MAX-ACCESS read-only 499 STATUS current 500 DESCRIPTION 501 " 502 Downstream Bandwidth Contract Id Assigned to the User 503 " 504 ::= { wlsxUser6Entry 33 } 505 506 nUser6HTMode OBJECT-TYPE 507 SYNTAX ArubaHTMode 508 MAX-ACCESS read-only 509 STATUS current 510 DESCRIPTION 511 " 512 The HT mode of this user, if any. 513 " 514 ::= { wlsxUser6Entry 34 } 515 516 nUser6DeviceID OBJECT-TYPE 517 SYNTAX DisplayString(SIZE(0..128)) 518 MAX-ACCESS read-only 519 STATUS current 520 DESCRIPTION 521 " 522 Device ID 523 " 524 ::= { wlsxUser6Entry 35 } 525 526 nUser6DeviceType OBJECT-TYPE 527 SYNTAX DisplayString(SIZE(0..31)) 528 MAX-ACCESS read-only 529 STATUS current 530 DESCRIPTION 531 " 532 Device Type 533 " 534 ::= { wlsxUser6Entry 36 } 535 536 nUser6ConnectedModule OBJECT-TYPE 537 SYNTAX Integer32 538 MAX-ACCESS read-only 539 STATUS current 540 DESCRIPTION 541 " 542 The module to which the user is connected, if wired. 543 " 544 ::= { wlsxUser6Entry 37 } 545 546 nUser6RxDataPkts64 OBJECT-TYPE 547 SYNTAX Counter64 548 MAX-ACCESS read-only 549 STATUS current 550 DESCRIPTION 551 " 552 This object specifies number of packets received by this IP 553 for which this user is connected to the controller. 554 " 555 ::= { wlsxUser6Entry 38 } 556 557 nUser6TxDataPkts64 OBJECT-TYPE 558 SYNTAX Counter64 559 MAX-ACCESS read-only 560 STATUS current 561 DESCRIPTION 562 " 563 This object specifies number of packets transmitted by this IP 564 for which this user is connected to the controller. 565 " 566 ::= { wlsxUser6Entry 39 } 567 568 nUser6RxDataOctets64 OBJECT-TYPE 569 SYNTAX Counter64 570 MAX-ACCESS read-only 571 STATUS current 572 DESCRIPTION 573 " 574 This object specifies number of octets received by this IP 575 for which this user is connected to the controller. 576 " 577 ::= { wlsxUser6Entry 40 } 578 579 nUser6TxDataOctets64 OBJECT-TYPE 580 SYNTAX Counter64 581 MAX-ACCESS read-only 582 STATUS current 583 DESCRIPTION 584 " 585 This object specifies number of octets transmitted by this IP 586 for which this user is connected to the controller. 587 " 588 ::= { wlsxUser6Entry 41 } 589 590 nUser6ForwardMode OBJECT-TYPE 591 SYNTAX ArubaUserForwardMode 592 MAX-ACCESS read-only 593 STATUS current 594 DESCRIPTION 595 " 596 Forward mode. 597 " 598 ::= { wlsxUser6Entry 42 } 599 600 nUser6EncryptionMethod OBJECT-TYPE 601 SYNTAX ArubaEncryptionType 602 MAX-ACCESS read-only 603 STATUS current 604 DESCRIPTION 605 " 606 Encryption method. 607 " 608 ::= { wlsxUser6Entry 43 } 609 610 nVIAUser6DeviceID OBJECT-TYPE 611 SYNTAX MacAddress 612 MAX-ACCESS read-only 613 STATUS current 614 DESCRIPTION 615 " 616 MAC address of the station from which the user connected to 617 the controller using VIA. 618 " 619 ::= { wlsxUser6Entry 44 } 620 621 wlsxUser6SessionTimeTable OBJECT-TYPE 622 SYNTAX SEQUENCE OF WlsxUser6SessionTimeEntry 623 MAX-ACCESS not-accessible 624 STATUS current 625 DESCRIPTION 626 " 627 This table lists the user session time counts on an ESSID. 628 ssid. The session times are separated into predefined time length 629 buckets, with sessions lasting longer than 240 minutes falling into 630 the 240min bucket. 631 " 632 ::= { wlsxUser6AllInfoGroup 3 } 633 634 wlsxUser6SessionTimeEntry OBJECT-TYPE 635 SYNTAX WlsxUser6SessionTimeEntry 636 MAX-ACCESS not-accessible 637 STATUS current 638 DESCRIPTION 639 " 640 User session time data, divided into buckets of different 641 time length. " 642 643 INDEX { wlanESSID, wlsxUser6SessionTimeLength} 644 ::= { wlsxUser6SessionTimeTable 1 } 645 646 WlsxUser6SessionTimeEntry ::= 647 SEQUENCE { 648 wlsxUser6SessionTimeLength Integer32, 649 wlsxUser6SessionTimeCount Counter32 650 } 651 652 wlsxUser6SessionTimeLength OBJECT-TYPE 653 SYNTAX Integer32 654 MAX-ACCESS not-accessible 655 STATUS current 656 DESCRIPTION 657 " 658 Pre-defined user session time length. 659 " 660 ::= { wlsxUser6SessionTimeEntry 1 } 661 662 wlsxUser6SessionTimeCount OBJECT-TYPE 663 SYNTAX Counter32 664 MAX-ACCESS read-only 665 STATUS current 666 DESCRIPTION 667 " 668 Number of users that are connected to the essid whose sessions expired in this time interval. 669 " 670 ::= { wlsxUser6SessionTimeEntry 2 } 671 672 wlsxSwitchUser6Table OBJECT-TYPE 673 SYNTAX SEQUENCE OF MxSwitchUser6Entry 674 MAX-ACCESS not-accessible 675 STATUS current 676 DESCRIPTION 677 " 678 This Table lists all the users (both wired and wireless) currently 679 connected to the switch. Users are identified by their IP address. 680 " 681 682 ::= { wlsxUser6InfoGroup 1 } 683 684 wlsxSwitchUser6Entry OBJECT-TYPE 685 SYNTAX MxSwitchUser6Entry 686 MAX-ACCESS not-accessible 687 STATUS current 688 DESCRIPTION 689 "User Entry" 690 INDEX { user6IpAddress} 691 ::= { wlsxSwitchUser6Table 1 } 692 693 MxSwitchUser6Entry ::= 694 SEQUENCE { 695 user6IpAddress DisplayString, 696 user6PhyAddress MacAddress, 697 user6Name DisplayString, 698 user6Role DisplayString, 699 user6UpTime TimeTicks, 700 user6AuthenticationMethod INTEGER, 701 user6Location DisplayString, 702 user6ServerName DisplayString, 703 user6ConnectedVlan Integer32, 704 user6ConnectedSlot Integer32, 705 user6ConnectedPort Integer32, 706 user6BWContractName DisplayString, 707 user6BWContractUsage INTEGER, 708 user6ConnectedModule Integer32 709 710 } 711 712 user6IpAddress OBJECT-TYPE 713 SYNTAX DisplayString(SIZE(0..32)) 714 MAX-ACCESS not-accessible 715 STATUS current 716 DESCRIPTION 717 " 718 IPv6 Address from which the user connected to the switch. 719 " 720 ::= { wlsxSwitchUser6Entry 1 } 721 722 user6PhyAddress OBJECT-TYPE 723 SYNTAX MacAddress 724 MAX-ACCESS read-only 725 STATUS current 726 DESCRIPTION 727 " 728 Physical Address of the station from which the user connected to 729 the switch. 730 " 731 ::= { wlsxSwitchUser6Entry 2 } 732 733 user6Name OBJECT-TYPE 734 SYNTAX DisplayString(SIZE(0..32)) 735 MAX-ACCESS read-only 736 STATUS current 737 DESCRIPTION 738 " 739 Name of the User. 740 " 741 ::= { wlsxSwitchUser6Entry 3 } 742 743 user6Role OBJECT-TYPE 744 SYNTAX DisplayString(SIZE(0..64)) 745 MAX-ACCESS read-only 746 STATUS current 747 DESCRIPTION 748 " 749 The Role configured for this user. 750 " 751 ::= { wlsxSwitchUser6Entry 4 } 752 753 754 user6UpTime OBJECT-TYPE 755 SYNTAX TimeTicks 756 MAX-ACCESS read-only 757 STATUS current 758 DESCRIPTION 759 " 760 Time since the user is connected to the switch. 761 " 762 ::= { wlsxSwitchUser6Entry 5 } 763 764 user6AuthenticationMethod OBJECT-TYPE 765 SYNTAX INTEGER { 766 none(1), 767 other(2), 768 web(3), 769 dot1x(4), 770 vpn(5), 771 mac(6) 772 } 773 MAX-ACCESS read-only 774 STATUS current 775 DESCRIPTION 776 " 777 Authentication mechanism used by the user to connect to the switch. 778 " 779 ::= { wlsxSwitchUser6Entry 6 } 780 781 user6Location OBJECT-TYPE 782 SYNTAX DisplayString(SIZE(0..32)) 783 MAX-ACCESS read-only 784 STATUS current 785 DESCRIPTION 786 " 787 Location of the access point (in Building.Floor.... format), which 788 the user used to connect to the switch. 789 " 790 ::= { wlsxSwitchUser6Entry 7 } 791 792 user6ServerName OBJECT-TYPE 793 SYNTAX DisplayString(SIZE(0..32)) 794 MAX-ACCESS read-only 795 STATUS current 796 DESCRIPTION 797 " 798 Name of the Back-end authentication server, used to authenticate 799 the user. 800 " 801 ::= { wlsxSwitchUser6Entry 8 } 802 803 user6ConnectedVlan OBJECT-TYPE 804 SYNTAX Integer32 805 MAX-ACCESS read-only 806 STATUS current 807 DESCRIPTION 808 " 809 Vlan on which the user is connected to the switch. 810 " 811 ::= { wlsxSwitchUser6Entry 9 } 812 813 user6ConnectedSlot OBJECT-TYPE 814 SYNTAX Integer32 815 MAX-ACCESS read-only 816 STATUS current 817 DESCRIPTION 818 " 819 Slot on switch, where the user connection terminates. 820 " 821 ::= { wlsxSwitchUser6Entry 10 } 822 823 user6ConnectedPort OBJECT-TYPE 824 SYNTAX Integer32 825 MAX-ACCESS read-only 826 STATUS current 827 DESCRIPTION 828 " 829 Port on switch, where the user connection terminates. 830 " 831 ::= { wlsxSwitchUser6Entry 11 } 832 833 user6BWContractName OBJECT-TYPE 834 SYNTAX DisplayString(SIZE(0..32)) 835 MAX-ACCESS read-only 836 STATUS current 837 DESCRIPTION 838 " 839 Name of the Bandwidth Contract applied to this user. 840 " 841 ::= { wlsxSwitchUser6Entry 12 } 842 843 user6BWContractUsage OBJECT-TYPE 844 SYNTAX INTEGER { 845 user(1), 846 shared(2) 847 } 848 MAX-ACCESS read-only 849 STATUS current 850 DESCRIPTION 851 " 852 Indicates how the Bandwidth Contract is used. 853 " 854 ::= { wlsxSwitchUser6Entry 13 } 855 856 user6ConnectedModule OBJECT-TYPE 857 SYNTAX Integer32 858 MAX-ACCESS read-only 859 STATUS current 860 DESCRIPTION 861 " 862 Module on switch, where the user connection terminates. 863 " 864 ::= { wlsxSwitchUser6Entry 14 } 865 866 867END 868