1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
|
#
# Ascend dictionary.
# $Id: dictionary.ascend 45 2006-11-14 17:45:00Z lem $
#
# Enable by putting the line "$INCLUDE dictionary.ascend" into
# the main dictionary file.
#
# Version: 1.00 21-Jul-1997 Jens Glaser <jens@regio.net>
# 1.01 22-Jan-1998 Tomas Pospisek <tpo@spin.ch>
# 1.2 28-Sept-2000 Chris Adams <cmadams@hiwaay.net>
# 1.3 12-Dec-2000 Miquel van Smoorenburg <miquels@cistron.nl>
#
#
# The Ascend-Data-Filter and Ascend-Call-Filter are case insensitive
# strings, with the following format:
#
# IP FILTERS:
#
# ip dir action [ dstip n.n.n.n/nn ] [ srcip n.n.n.n/nn ]
# [ proto [ dstport cmp value ] [ srcport cmd value ] [ est ] ]
#
# Fields in [...] are optional.
# where:
#
# ip: Keyword to designate an IP filter. Actually this
# has been determined by parseFilter.
#
# dir: Filter direction. "IN" or "OUT"
#
# action: Filter action. "FORWARD" or "DROP"
#
# dstip: Keyword for destination IP address.
# n.n.n.n = IP address. /nn - netmask.
#
# srcip: Keyword for source IP address.
# n.n.n.n = IP address. /nn - netmask.
#
# proto: Optional protocol field. Either a name or
# number. Known names are in FilterProtoName[].
#
# dstport: Keyword for destination port. Only valid with tcp
# or udp. 'cmp' are in FilterPortType[]. 'value' can be
# a name or number.
#
# srcport: Keyword for source port. Only valid with tcp
# or udp. 'cmp' are in FilterPortType[]. 'value' can be
# a name or number.
#
# est: Keyword for TCP established. Valid only for tcp.
#
# IPX FILTERS
#
# ipx dir action [ srcipxnet nnnn srcipxnode mmmmm [srcipxsoc cmd value ]]
# [ dstipxnet nnnn dstipxnode mmmmm [dstipxsoc cmd value ]]
#
# Fields in [...] are optional.
# where:
#
# ipx: Keyword to designate an IPX filter. Actually this
# has been determined by parseFilter.
#
# dir: Filter direction. "IN" or "OUT"
#
# action: Filter action. "FORWARD" or "DROP"
#
# srcipxnet: Keyword for source IPX address.
# nnnn = IPX Node address.
#
# srcipxnode: Keyword for source IPX Node address.
# mmmmm = IPX Node Address, could be FFFFFF.
# A vlid ipx node number should accompany ipx net number.
#
# srcipxsoc: Keyword for source IPX socket address.
#
# cmd: One of ">" or "<" or "=" or "!=".
# (without the quotes)
#
# value: Socket value to be compared against, in hex.
#
# dstipxnet: Keyword for destination IPX address.
# nnnn = IPX Node address.
#
# dstipxnode: Keyword for destination IPX Node address.
# mmmmm = IPX Node Address, could be FFFFFF.
# A vlid ipx node number should accompany ipx net number.
#
# dstipxsoc: Keyword for destination IPX socket address.
#
# cmd: One of ">" or "<" or "=" or "!=".
# (without the quotes)
#
# value: Socket value to be compared against, in hex.
#
# GENERIC FILTERS
#
# generic dir action offset mask value [== or != ] [more]
#
# Fields in [...] are optional.
# where:
#
# generic: Keyword to indicate a generic filter. This
# has been determined by parseFilter.
#
# dir: Filter direction. "IN" or "OUT"
#
# action: Filter action. "FORWARD" or "DROP"
#
# offset: A Number. Specifies an offset into a frame
# to start comparing.
#
# mask: A hexadecimal mask of bits to compare.
#
# value: A value to compare with the masked data.
#
# compNeq: Defines type of comparison. ( "==" or "!=")
# Default is "==".
#
# more: Optional keyword MORE, to represent the attachment
# to the next entry.
VENDOR Ascend 529
#
# Ascend specific extensions
# Used by ASCEND MAX/Pipeline products
#
# This next block is renamed because they share the same
# names as the vendor-specific attributes, BUT they occur
# in the lower (1-255) RADIUS attribute space.
#
# Older Ascend software will send these, rather than the
# vendor specific attributes.
#
ATTRIBUTE X-Ascend-FCP-Parameter 119 string
ATTRIBUTE X-Ascend-Modem-PortNo 120 integer
ATTRIBUTE X-Ascend-Modem-SlotNo 121 integer
ATTRIBUTE X-Ascend-Modem-ShelfNo 122 integer
ATTRIBUTE X-Ascend-Call-Attempt-Limit 123 integer
ATTRIBUTE X-Ascend-Call-Block-Duration 124 integer
ATTRIBUTE X-Ascend-Maximum-Call-Duration 125 integer
ATTRIBUTE X-Ascend-Temporary-Rtes 126 integer
ATTRIBUTE X-Ascend-Tunneling-Protocol 127 integer
ATTRIBUTE X-Ascend-Shared-Profile-Enable 128 integer
ATTRIBUTE X-Ascend-Primary-Home-Agent 129 string
ATTRIBUTE X-Ascend-Secondary-Home-Agent 130 string
ATTRIBUTE X-Ascend-Dialout-Allowed 131 integer
ATTRIBUTE X-Ascend-Client-Gateway 132 ipaddr
ATTRIBUTE X-Ascend-BACP-Enable 133 integer
ATTRIBUTE X-Ascend-DHCP-Maximum-Leases 134 integer
ATTRIBUTE X-Ascend-Client-Primary-DNS 135 ipaddr
ATTRIBUTE X-Ascend-Client-Secondary-DNS 136 ipaddr
ATTRIBUTE X-Ascend-Client-Assign-DNS 137 integer
ATTRIBUTE X-Ascend-User-Acct-Type 138 integer
ATTRIBUTE X-Ascend-User-Acct-Host 139 ipaddr
ATTRIBUTE X-Ascend-User-Acct-Port 140 integer
ATTRIBUTE X-Ascend-User-Acct-Key 141 string
ATTRIBUTE X-Ascend-User-Acct-Base 142 integer
ATTRIBUTE X-Ascend-User-Acct-Time 143 integer
ATTRIBUTE X-Ascend-Assign-IP-Client 144 ipaddr
ATTRIBUTE X-Ascend-Assign-IP-Server 145 ipaddr
ATTRIBUTE X-Ascend-Assign-IP-Global-Pool 146 string
ATTRIBUTE X-Ascend-DHCP-Reply 147 integer
ATTRIBUTE X-Ascend-DHCP-Pool-Number 148 integer
ATTRIBUTE X-Ascend-Expect-Callback 149 integer
ATTRIBUTE X-Ascend-Event-Type 150 integer
ATTRIBUTE X-Ascend-Session-Svr-Key 151 string
ATTRIBUTE X-Ascend-Multicast-Rate-Limit 152 integer
ATTRIBUTE X-Ascend-IF-Netmask 153 ipaddr
ATTRIBUTE X-Ascend-Remote-Addr 154 ipaddr
ATTRIBUTE X-Ascend-Multicast-Client 155 integer
ATTRIBUTE X-Ascend-FR-Circuit-Name 156 string
ATTRIBUTE X-Ascend-FR-LinkUp 157 integer
ATTRIBUTE X-Ascend-FR-Nailed-Grp 158 integer
ATTRIBUTE X-Ascend-FR-Type 159 integer
ATTRIBUTE X-Ascend-FR-Link-Mgt 160 integer
ATTRIBUTE X-Ascend-FR-N391 161 integer
ATTRIBUTE X-Ascend-FR-DCE-N392 162 integer
ATTRIBUTE X-Ascend-FR-DTE-N392 163 integer
ATTRIBUTE X-Ascend-FR-DCE-N393 164 integer
ATTRIBUTE X-Ascend-FR-DTE-N393 165 integer
ATTRIBUTE X-Ascend-FR-T391 166 integer
ATTRIBUTE X-Ascend-FR-T392 167 integer
ATTRIBUTE X-Ascend-Bridge-Address 168 string
ATTRIBUTE X-Ascend-TS-Idle-Limit 169 integer
ATTRIBUTE X-Ascend-TS-Idle-Mode 170 integer
ATTRIBUTE X-Ascend-DBA-Monitor 171 integer
ATTRIBUTE X-Ascend-Base-Channel-Count 172 integer
ATTRIBUTE X-Ascend-Minimum-Channels 173 integer
ATTRIBUTE X-Ascend-IPX-Route 174 string
ATTRIBUTE X-Ascend-FT1-Caller 175 integer
ATTRIBUTE X-Ascend-Backup 176 string
ATTRIBUTE X-Ascend-Call-Type 177 integer
ATTRIBUTE X-Ascend-Group 178 string
ATTRIBUTE X-Ascend-FR-DLCI 179 integer
ATTRIBUTE X-Ascend-FR-Profile-Name 180 string
ATTRIBUTE X-Ascend-Ara-PW 181 string
ATTRIBUTE X-Ascend-IPX-Node-Addr 182 string
ATTRIBUTE X-Ascend-Home-Agent-IP-Addr 183 ipaddr
ATTRIBUTE X-Ascend-Home-Agent-Password 184 string
ATTRIBUTE X-Ascend-Home-Network-Name 185 string
ATTRIBUTE X-Ascend-Home-Agent-UDP-Port 186 integer
ATTRIBUTE X-Ascend-Multilink-ID 187 integer
ATTRIBUTE X-Ascend-Num-In-Multilink 188 integer
ATTRIBUTE X-Ascend-First-Dest 189 ipaddr
ATTRIBUTE X-Ascend-Pre-Input-Octets 190 integer
ATTRIBUTE X-Ascend-Pre-Output-Octets 191 integer
ATTRIBUTE X-Ascend-Pre-Input-Packets 192 integer
ATTRIBUTE X-Ascend-Pre-Output-Packets 193 integer
ATTRIBUTE X-Ascend-Maximum-Time 194 integer
ATTRIBUTE X-Ascend-Disconnect-Cause 195 integer
ATTRIBUTE X-Ascend-Connect-Progress 196 integer
ATTRIBUTE X-Ascend-Data-Rate 197 integer
ATTRIBUTE X-Ascend-PreSession-Time 198 integer
ATTRIBUTE X-Ascend-Token-Idle 199 integer
ATTRIBUTE X-Ascend-Token-Immediate 200 integer
ATTRIBUTE X-Ascend-Require-Auth 201 integer
ATTRIBUTE X-Ascend-Number-Sessions 202 string
ATTRIBUTE X-Ascend-Authen-Alias 203 string
ATTRIBUTE X-Ascend-Token-Expiry 204 integer
ATTRIBUTE X-Ascend-Menu-Selector 205 string
ATTRIBUTE X-Ascend-Menu-Item 206 string
ATTRIBUTE X-Ascend-PW-Warntime 207 integer
ATTRIBUTE X-Ascend-PW-Lifetime 208 integer
ATTRIBUTE X-Ascend-IP-Direct 209 ipaddr
ATTRIBUTE X-Ascend-PPP-VJ-Slot-Comp 210 integer
ATTRIBUTE X-Ascend-PPP-VJ-1172 211 integer
ATTRIBUTE X-Ascend-PPP-Async-Map 212 integer
ATTRIBUTE X-Ascend-Third-Prompt 213 string
ATTRIBUTE X-Ascend-Send-Secret 214 string
ATTRIBUTE X-Ascend-Receive-Secret 215 string
ATTRIBUTE X-Ascend-IPX-Peer-Mode 216 integer
ATTRIBUTE X-Ascend-IP-Pool-Definition 217 string
ATTRIBUTE X-Ascend-Assign-IP-Pool 218 integer
ATTRIBUTE X-Ascend-FR-Direct 219 integer
ATTRIBUTE X-Ascend-FR-Direct-Profile 220 string
ATTRIBUTE X-Ascend-FR-Direct-DLCI 221 integer
ATTRIBUTE X-Ascend-Handle-IPX 222 integer
ATTRIBUTE X-Ascend-Netware-timeout 223 integer
ATTRIBUTE X-Ascend-IPX-Alias 224 integer
ATTRIBUTE X-Ascend-Metric 225 integer
ATTRIBUTE X-Ascend-PRI-Number-Type 226 integer
ATTRIBUTE X-Ascend-Dial-Number 227 string
ATTRIBUTE X-Ascend-Route-IP 228 integer
ATTRIBUTE X-Ascend-Route-IPX 229 integer
ATTRIBUTE X-Ascend-Bridge 230 integer
ATTRIBUTE X-Ascend-Send-Auth 231 integer
ATTRIBUTE X-Ascend-Send-Passwd 232 string
ATTRIBUTE X-Ascend-Link-Compression 233 integer
ATTRIBUTE X-Ascend-Target-Util 234 integer
ATTRIBUTE X-Ascend-Maximum-Channels 235 integer
ATTRIBUTE X-Ascend-Inc-Channel-Count 236 integer
ATTRIBUTE X-Ascend-Dec-Channel-Count 237 integer
ATTRIBUTE X-Ascend-Seconds-Of-History 238 integer
ATTRIBUTE X-Ascend-History-Weigh-Type 239 integer
ATTRIBUTE X-Ascend-Add-Seconds 240 integer
ATTRIBUTE X-Ascend-Remove-Seconds 241 integer
ATTRIBUTE X-Ascend-Data-Filter 242 string
ATTRIBUTE X-Ascend-Call-Filter 243 string
ATTRIBUTE X-Ascend-Idle-Limit 244 integer
ATTRIBUTE X-Ascend-Preempt-Limit 245 integer
ATTRIBUTE X-Ascend-Callback 246 integer
ATTRIBUTE X-Ascend-Data-Svc 247 integer
ATTRIBUTE X-Ascend-Force-56 248 integer
ATTRIBUTE X-Ascend-Billing-Number 249 string
ATTRIBUTE X-Ascend-Call-By-Call 250 integer
ATTRIBUTE X-Ascend-Transit-Number 251 string
ATTRIBUTE X-Ascend-Host-Info 252 string
ATTRIBUTE X-Ascend-PPP-Address 253 ipaddr
ATTRIBUTE X-Ascend-MPP-Idle-Percent 254 integer
ATTRIBUTE X-Ascend-Xmit-Rate 255 integer
#
# Ascend vendor-specific attributes.
#
ATTRIBUTE Ascend-Max-Shared-Users 2 integer Ascend
ATTRIBUTE Ascend-UU-Info 7 string Ascend
ATTRIBUTE Ascend-CIR-Timer 9 integer Ascend
ATTRIBUTE Ascend-FR-08-Mode 10 integer Ascend
ATTRIBUTE Ascend-Destination-Nas-Port 11 integer Ascend
ATTRIBUTE Ascend-FR-SVC-Addr 12 string Ascend
ATTRIBUTE Ascend-NAS-Port-Format 13 integer Ascend
ATTRIBUTE Ascend-ATM-Fault-Management 14 integer Ascend
ATTRIBUTE Ascend-ATM-Loopback-Cell-Loss 15 integer Ascend
ATTRIBUTE Ascend-Ckt-Type 16 integer Ascend
ATTRIBUTE Ascend-SVC-Enabled 17 integer Ascend
ATTRIBUTE Ascend-Session-Type 18 integer Ascend
ATTRIBUTE Ascend-H323-Gatekeeper 19 ipaddr Ascend
ATTRIBUTE Ascend-Global-Call-Id 20 string Ascend
ATTRIBUTE Ascend-H323-Conference-Id 21 integer Ascend
ATTRIBUTE Ascend-H323-Fegw-Address 22 ipaddr Ascend
ATTRIBUTE Ascend-H323-Dialed-Time 23 integer Ascend
ATTRIBUTE Ascend-Dialed-Number 24 string Ascend
ATTRIBUTE Ascend-Inter-Arrival-Jitter 25 integer Ascend
ATTRIBUTE Ascend-Dropped-Octets 26 integer Ascend
ATTRIBUTE Ascend-Dropped-Packets 27 integer Ascend
ATTRIBUTE Ascend-Auth-Delay 28 integer Ascend
ATTRIBUTE Ascend-X25-Pad-X3-Profile 29 integer Ascend
ATTRIBUTE Ascend-X25-Pad-X3-Parameters 30 string Ascend
ATTRIBUTE Ascend-Tunnel-VRouter-Name 31 string Ascend
ATTRIBUTE Ascend-X25-Reverse-Charging 32 integer Ascend
ATTRIBUTE Ascend-X25-Nui-Prompt 33 string Ascend
ATTRIBUTE Ascend-X25-Nui-Password-Prompt 34 string Ascend
ATTRIBUTE Ascend-X25-Cug 35 string Ascend
ATTRIBUTE Ascend-X25-Pad-Alias-1 36 string Ascend
ATTRIBUTE Ascend-X25-Pad-Alias-2 37 string Ascend
ATTRIBUTE Ascend-X25-Pad-Alias-3 38 string Ascend
ATTRIBUTE Ascend-X25-X121-Address 39 string Ascend
ATTRIBUTE Ascend-X25-Nui 40 string Ascend
ATTRIBUTE Ascend-X25-Rpoa 41 string Ascend
ATTRIBUTE Ascend-X25-Pad-Prompt 42 string Ascend
ATTRIBUTE Ascend-X25-Pad-Banner 43 string Ascend
ATTRIBUTE Ascend-X25-Profile-Name 44 string Ascend
ATTRIBUTE Ascend-Recv-Name 45 string Ascend
ATTRIBUTE Ascend-Bi-Directional-Auth 46 integer Ascend
ATTRIBUTE Ascend-MTU 47 integer Ascend
ATTRIBUTE Ascend-Call-Direction 48 integer Ascend
ATTRIBUTE Ascend-Service-Type 49 integer Ascend
ATTRIBUTE Ascend-Filter-Required 50 integer Ascend
ATTRIBUTE Ascend-Traffic-Shaper 51 integer Ascend
ATTRIBUTE Ascend-Access-Intercept-LEA 52 string Ascend
ATTRIBUTE Ascend-Access-Intercept-Log 53 string Ascend
ATTRIBUTE Ascend-Private-Route-Table-ID 54 string Ascend
ATTRIBUTE Ascend-Private-Route-Required 55 integer Ascend
ATTRIBUTE Ascend-Cache-Refresh 56 integer Ascend
ATTRIBUTE Ascend-Cache-Time 57 integer Ascend
ATTRIBUTE Ascend-Egress-Enabled 58 integer Ascend
ATTRIBUTE Ascend-QOS-Upstream 59 string Ascend
ATTRIBUTE Ascend-QOS-Downstream 60 string Ascend
ATTRIBUTE Ascend-ATM-Connect-Vpi 61 integer Ascend
ATTRIBUTE Ascend-ATM-Connect-Vci 62 integer Ascend
ATTRIBUTE Ascend-ATM-Connect-Group 63 integer Ascend
ATTRIBUTE Ascend-ATM-Group 64 integer Ascend
ATTRIBUTE Ascend-IPX-Header-Compression 65 integer Ascend
ATTRIBUTE Ascend-Calling-Id-Type-Of-Num 66 integer Ascend
ATTRIBUTE Ascend-Calling-Id-Number-Plan 67 integer Ascend
ATTRIBUTE Ascend-Calling-Id-Presentatn 68 integer Ascend
ATTRIBUTE Ascend-Calling-Id-Screening 69 integer Ascend
ATTRIBUTE Ascend-BIR-Enable 70 integer Ascend
ATTRIBUTE Ascend-BIR-Proxy 71 integer Ascend
ATTRIBUTE Ascend-BIR-Bridge-Group 72 integer Ascend
ATTRIBUTE Ascend-IPSEC-Profile 73 string Ascend
ATTRIBUTE Ascend-PPPoE-Enable 74 integer Ascend
ATTRIBUTE Ascend-Bridge-Non-PPPoE 75 integer Ascend
ATTRIBUTE Ascend-ATM-Direct 76 integer Ascend
ATTRIBUTE Ascend-ATM-Direct-Profile 77 string Ascend
ATTRIBUTE Ascend-Client-Primary-WINS 78 ipaddr Ascend
ATTRIBUTE Ascend-Client-Secondary-WINS 79 ipaddr Ascend
ATTRIBUTE Ascend-Client-Assign-WINS 80 integer Ascend
ATTRIBUTE Ascend-Auth-Type 81 integer Ascend
ATTRIBUTE Ascend-Port-Redir-Protocol 82 integer Ascend
ATTRIBUTE Ascend-Port-Redir-Portnum 83 integer Ascend
ATTRIBUTE Ascend-Port-Redir-Server 84 ipaddr Ascend
ATTRIBUTE Ascend-IP-Pool-Chaining 85 integer Ascend
ATTRIBUTE Ascend-Owner-IP-Addr 86 ipaddr Ascend
ATTRIBUTE Ascend-IP-TOS 87 integer Ascend
ATTRIBUTE Ascend-IP-TOS-Precedence 88 integer Ascend
ATTRIBUTE Ascend-IP-TOS-Apply-To 89 integer Ascend
ATTRIBUTE Ascend-Filter 90 string Ascend
ATTRIBUTE Ascend-Telnet-Profile 91 string Ascend
ATTRIBUTE Ascend-Dsl-Rate-Type 92 integer Ascend
ATTRIBUTE Ascend-Redirect-Number 93 string Ascend
ATTRIBUTE Ascend-ATM-Vpi 94 integer Ascend
ATTRIBUTE Ascend-ATM-Vci 95 integer Ascend
ATTRIBUTE Ascend-Source-IP-Check 96 integer Ascend
ATTRIBUTE Ascend-Dsl-Rate-Mode 97 integer Ascend
ATTRIBUTE Ascend-Dsl-Upstream-Limit 98 integer Ascend
ATTRIBUTE Ascend-Dsl-Downstream-Limit 99 integer Ascend
ATTRIBUTE Ascend-Dsl-CIR-Recv-Limit 100 integer Ascend
ATTRIBUTE Ascend-Dsl-CIR-Xmit-Limit 101 integer Ascend
ATTRIBUTE Ascend-VRouter-Name 102 string Ascend
ATTRIBUTE Ascend-Source-Auth 103 string Ascend
ATTRIBUTE Ascend-Private-Route 104 string Ascend
ATTRIBUTE Ascend-Numbering-Plan-ID 105 integer Ascend
ATTRIBUTE Ascend-FR-Link-Status-DLCI 106 integer Ascend
ATTRIBUTE Ascend-Calling-Subaddress 107 string Ascend
ATTRIBUTE Ascend-Callback-Delay 108 integer Ascend
ATTRIBUTE Ascend-Endpoint-Disc 109 string Ascend
ATTRIBUTE Ascend-Remote-FW 110 string Ascend
ATTRIBUTE Ascend-Multicast-GLeave-Delay 111 integer Ascend
ATTRIBUTE Ascend-CBCP-Enable 112 integer Ascend
ATTRIBUTE Ascend-CBCP-Mode 113 integer Ascend
ATTRIBUTE Ascend-CBCP-Delay 114 integer Ascend
ATTRIBUTE Ascend-CBCP-Trunk-Group 115 integer Ascend
ATTRIBUTE Ascend-Appletalk-Route 116 string Ascend
ATTRIBUTE Ascend-Appletalk-Peer-Mode 117 integer Ascend
ATTRIBUTE Ascend-Route-Appletalk 118 integer Ascend
ATTRIBUTE Ascend-FCP-Parameter 119 string Ascend
ATTRIBUTE Ascend-Modem-PortNo 120 integer Ascend
ATTRIBUTE Ascend-Modem-SlotNo 121 integer Ascend
ATTRIBUTE Ascend-Modem-ShelfNo 122 integer Ascend
ATTRIBUTE Ascend-Call-Attempt-Limit 123 integer Ascend
ATTRIBUTE Ascend-Call-Block-Duration 124 integer Ascend
ATTRIBUTE Ascend-Maximum-Call-Duration 125 integer Ascend
ATTRIBUTE Ascend-Temporary-Rtes 126 integer Ascend
ATTRIBUTE Ascend-Tunneling-Protocol 127 integer Ascend
ATTRIBUTE Ascend-Shared-Profile-Enable 128 integer Ascend
ATTRIBUTE Ascend-Primary-Home-Agent 129 string Ascend
ATTRIBUTE Ascend-Secondary-Home-Agent 130 string Ascend
ATTRIBUTE Ascend-Dialout-Allowed 131 integer Ascend
ATTRIBUTE Ascend-Client-Gateway 132 ipaddr Ascend
ATTRIBUTE Ascend-BACP-Enable 133 integer Ascend
ATTRIBUTE Ascend-DHCP-Maximum-Leases 134 integer Ascend
ATTRIBUTE Ascend-Client-Primary-DNS 135 ipaddr Ascend
ATTRIBUTE Ascend-Client-Secondary-DNS 136 ipaddr Ascend
ATTRIBUTE Ascend-Client-Assign-DNS 137 integer Ascend
ATTRIBUTE Ascend-User-Acct-Type 138 integer Ascend
ATTRIBUTE Ascend-User-Acct-Host 139 ipaddr Ascend
ATTRIBUTE Ascend-User-Acct-Port 140 integer Ascend
ATTRIBUTE Ascend-User-Acct-Key 141 string Ascend
ATTRIBUTE Ascend-User-Acct-Base 142 integer Ascend
ATTRIBUTE Ascend-User-Acct-Time 143 integer Ascend
ATTRIBUTE Ascend-Assign-IP-Client 144 ipaddr Ascend
ATTRIBUTE Ascend-Assign-IP-Server 145 ipaddr Ascend
ATTRIBUTE Ascend-Assign-IP-Global-Pool 146 string Ascend
ATTRIBUTE Ascend-DHCP-Reply 147 integer Ascend
ATTRIBUTE Ascend-DHCP-Pool-Number 148 integer Ascend
ATTRIBUTE Ascend-Expect-Callback 149 integer Ascend
ATTRIBUTE Ascend-Event-Type 150 integer Ascend
ATTRIBUTE Ascend-Session-Svr-Key 151 string Ascend
ATTRIBUTE Ascend-Multicast-Rate-Limit 152 integer Ascend
ATTRIBUTE Ascend-IF-Netmask 153 ipaddr Ascend
ATTRIBUTE Ascend-Remote-Addr 154 ipaddr Ascend
ATTRIBUTE Ascend-Multicast-Client 155 integer Ascend
ATTRIBUTE Ascend-FR-Circuit-Name 156 string Ascend
ATTRIBUTE Ascend-FR-LinkUp 157 integer Ascend
ATTRIBUTE Ascend-FR-Nailed-Grp 158 integer Ascend
ATTRIBUTE Ascend-FR-Type 159 integer Ascend
ATTRIBUTE Ascend-FR-Link-Mgt 160 integer Ascend
ATTRIBUTE Ascend-FR-N391 161 integer Ascend
ATTRIBUTE Ascend-FR-DCE-N392 162 integer Ascend
ATTRIBUTE Ascend-FR-DTE-N392 163 integer Ascend
ATTRIBUTE Ascend-FR-DCE-N393 164 integer Ascend
ATTRIBUTE Ascend-FR-DTE-N393 165 integer Ascend
ATTRIBUTE Ascend-FR-T391 166 integer Ascend
ATTRIBUTE Ascend-FR-T392 167 integer Ascend
ATTRIBUTE Ascend-Bridge-Address 168 string Ascend
ATTRIBUTE Ascend-TS-Idle-Limit 169 integer Ascend
ATTRIBUTE Ascend-TS-Idle-Mode 170 integer Ascend
ATTRIBUTE Ascend-DBA-Monitor 171 integer Ascend
ATTRIBUTE Ascend-Base-Channel-Count 172 integer Ascend
ATTRIBUTE Ascend-Minimum-Channels 173 integer Ascend
ATTRIBUTE Ascend-IPX-Route 174 string Ascend
ATTRIBUTE Ascend-FT1-Caller 175 integer Ascend
ATTRIBUTE Ascend-Backup 176 string Ascend
ATTRIBUTE Ascend-Call-Type 177 integer Ascend
ATTRIBUTE Ascend-Group 178 string Ascend
ATTRIBUTE Ascend-FR-DLCI 179 integer Ascend
ATTRIBUTE Ascend-FR-Profile-Name 180 string Ascend
ATTRIBUTE Ascend-Ara-PW 181 string Ascend
ATTRIBUTE Ascend-IPX-Node-Addr 182 string Ascend
ATTRIBUTE Ascend-Home-Agent-IP-Addr 183 ipaddr Ascend
ATTRIBUTE Ascend-Home-Agent-Password 184 string Ascend
ATTRIBUTE Ascend-Home-Network-Name 185 string Ascend
ATTRIBUTE Ascend-Home-Agent-UDP-Port 186 integer Ascend
ATTRIBUTE Ascend-Multilink-ID 187 integer Ascend
ATTRIBUTE Ascend-Num-In-Multilink 188 integer Ascend
ATTRIBUTE Ascend-First-Dest 189 ipaddr Ascend
ATTRIBUTE Ascend-Pre-Input-Octets 190 integer Ascend
ATTRIBUTE Ascend-Pre-Output-Octets 191 integer Ascend
ATTRIBUTE Ascend-Pre-Input-Packets 192 integer Ascend
ATTRIBUTE Ascend-Pre-Output-Packets 193 integer Ascend
ATTRIBUTE Ascend-Maximum-Time 194 integer Ascend
ATTRIBUTE Ascend-Disconnect-Cause 195 integer Ascend
ATTRIBUTE Ascend-Connect-Progress 196 integer Ascend
ATTRIBUTE Ascend-Data-Rate 197 integer Ascend
ATTRIBUTE Ascend-PreSession-Time 198 integer Ascend
ATTRIBUTE Ascend-Token-Idle 199 integer Ascend
ATTRIBUTE Ascend-Token-Immediate 200 integer Ascend
ATTRIBUTE Ascend-Require-Auth 201 integer Ascend
ATTRIBUTE Ascend-Number-Sessions 202 string Ascend
ATTRIBUTE Ascend-Authen-Alias 203 string Ascend
ATTRIBUTE Ascend-Token-Expiry 204 integer Ascend
ATTRIBUTE Ascend-Menu-Selector 205 string Ascend
ATTRIBUTE Ascend-Menu-Item 206 string Ascend
ATTRIBUTE Ascend-PW-Warntime 207 integer Ascend
ATTRIBUTE Ascend-PW-Lifetime 208 integer Ascend
ATTRIBUTE Ascend-IP-Direct 209 ipaddr Ascend
ATTRIBUTE Ascend-PPP-VJ-Slot-Comp 210 integer Ascend
ATTRIBUTE Ascend-PPP-VJ-1172 211 integer Ascend
ATTRIBUTE Ascend-PPP-Async-Map 212 integer Ascend
ATTRIBUTE Ascend-Third-Prompt 213 string Ascend
ATTRIBUTE Ascend-Send-Secret 214 string Ascend
ATTRIBUTE Ascend-Receive-Secret 215 string Ascend
ATTRIBUTE Ascend-IPX-Peer-Mode 216 integer Ascend
ATTRIBUTE Ascend-IP-Pool-Definition 217 string Ascend
ATTRIBUTE Ascend-Assign-IP-Pool 218 integer Ascend
ATTRIBUTE Ascend-FR-Direct 219 integer Ascend
ATTRIBUTE Ascend-FR-Direct-Profile 220 string Ascend
ATTRIBUTE Ascend-FR-Direct-DLCI 221 integer Ascend
ATTRIBUTE Ascend-Handle-IPX 222 integer Ascend
ATTRIBUTE Ascend-Netware-timeout 223 integer Ascend
ATTRIBUTE Ascend-IPX-Alias 224 integer Ascend
ATTRIBUTE Ascend-Metric 225 integer Ascend
ATTRIBUTE Ascend-PRI-Number-Type 226 integer Ascend
ATTRIBUTE Ascend-Dial-Number 227 string Ascend
ATTRIBUTE Ascend-Route-IP 228 integer Ascend
ATTRIBUTE Ascend-Route-IPX 229 integer Ascend
ATTRIBUTE Ascend-Bridge 230 integer Ascend
ATTRIBUTE Ascend-Send-Auth 231 integer Ascend
ATTRIBUTE Ascend-Send-Passwd 232 string Ascend
ATTRIBUTE Ascend-Link-Compression 233 integer Ascend
ATTRIBUTE Ascend-Target-Util 234 integer Ascend
ATTRIBUTE Ascend-Maximum-Channels 235 integer Ascend
ATTRIBUTE Ascend-Inc-Channel-Count 236 integer Ascend
ATTRIBUTE Ascend-Dec-Channel-Count 237 integer Ascend
ATTRIBUTE Ascend-Seconds-Of-History 238 integer Ascend
ATTRIBUTE Ascend-History-Weigh-Type 239 integer Ascend
ATTRIBUTE Ascend-Add-Seconds 240 integer Ascend
ATTRIBUTE Ascend-Remove-Seconds 241 integer Ascend
ATTRIBUTE Ascend-Data-Filter 242 string Ascend
ATTRIBUTE Ascend-Call-Filter 243 string Ascend
ATTRIBUTE Ascend-Idle-Limit 244 integer Ascend
ATTRIBUTE Ascend-Preempt-Limit 245 integer Ascend
ATTRIBUTE Ascend-Callback 246 integer Ascend
ATTRIBUTE Ascend-Data-Svc 247 integer Ascend
ATTRIBUTE Ascend-Force-56 248 integer Ascend
ATTRIBUTE Ascend-Billing-Number 249 string Ascend
ATTRIBUTE Ascend-Call-By-Call 250 integer Ascend
ATTRIBUTE Ascend-Transit-Number 251 string Ascend
ATTRIBUTE Ascend-Host-Info 252 string Ascend
ATTRIBUTE Ascend-PPP-Address 253 ipaddr Ascend
ATTRIBUTE Ascend-MPP-Idle-Percent 254 integer Ascend
ATTRIBUTE Ascend-Xmit-Rate 255 integer Ascend
# Ascend protocols
VALUE Service-Type Dialout-Framed-User 5
VALUE Framed-Protocol Ascend-ARA 255
VALUE Framed-Protocol Ascend-MPP 256
VALUE Framed-Protocol Ascend-EURAW 257
VALUE Framed-Protocol Ascend-EUUI 258
VALUE Framed-Protocol Ascend-X25 259
VALUE Framed-Protocol Ascend-COMB 260
VALUE Framed-Protocol Ascend-FR 261
VALUE Framed-Protocol Ascend-MP 262
VALUE Framed-Protocol Ascend-FR-CIR 263
#
# Ascend specific extensions
# Used by ASCEND MAX/Pipeline products (see above)
#
VALUE Ascend-Source-IP-Check Source-IP-Check-No 0
VALUE Ascend-Source-IP-Check Source-IP-Check-Yes 1
VALUE Ascend-CBCP-Enable CBCP-Not-Enabled 0
VALUE Ascend-CBCP-Enable CBCP-Enabled 1
VALUE Ascend-CBCP-Mode CBCP-No-Callback 1
VALUE Ascend-CBCP-Mode CBCP-User-Callback 2
VALUE Ascend-CBCP-Mode CBCP-Profile-Callback 3
VALUE Ascend-CBCP-Mode CBCP-Any-Or-No 7
VALUE Ascend-CBCP-Mode CBCP-Off 8
VALUE Ascend-FR-Direct FR-Direct-No 0
VALUE Ascend-FR-Direct FR-Direct-Yes 1
VALUE Ascend-Handle-IPX Handle-IPX-None 0
VALUE Ascend-Handle-IPX Handle-IPX-Client 1
VALUE Ascend-Handle-IPX Handle-IPX-Server 2
VALUE Ascend-IPX-Peer-Mode IPX-Peer-Router 0
VALUE Ascend-IPX-Peer-Mode IPX-Peer-Dialin 1
VALUE Ascend-Call-Type Switched 0
VALUE Ascend-Call-Type Nailed 1
VALUE Ascend-Call-Type Nailed/Mpp 2
VALUE Ascend-Call-Type Perm/Switched 3
VALUE Ascend-Call-Type AO/DI 6
VALUE Ascend-Call-Type MegaMax 7
VALUE Ascend-FT1-Caller FT1-No 0
VALUE Ascend-FT1-Caller FT1-Yes 1
VALUE Ascend-PRI-Number-Type Unknown-Number 0
VALUE Ascend-PRI-Number-Type Intl-Number 1
VALUE Ascend-PRI-Number-Type National-Number 2
VALUE Ascend-PRI-Number-Type Net-Specific-Number 3
VALUE Ascend-PRI-Number-Type Local-Number 4
VALUE Ascend-PRI-Number-Type Abbrev-Number 5
VALUE Ascend-Route-IP Route-IP-No 0
VALUE Ascend-Route-IP Route-IP-Yes 1
VALUE Ascend-Route-IPX Route-IPX-No 0
VALUE Ascend-Route-IPX Route-IPX-Yes 1
VALUE Ascend-Bridge Bridge-No 0
VALUE Ascend-Bridge Bridge-Yes 1
VALUE Ascend-TS-Idle-Mode TS-Idle-None 0
VALUE Ascend-TS-Idle-Mode TS-Idle-Input 1
VALUE Ascend-TS-Idle-Mode TS-Idle-Input-Output 2
VALUE Ascend-Send-Auth Send-Auth-None 0
VALUE Ascend-Send-Auth Send-Auth-PAP 1
VALUE Ascend-Send-Auth Send-Auth-CHAP 2
VALUE Ascend-Send-Auth Send-Auth-MS-CHAP 3
VALUE Ascend-Link-Compression Link-Comp-None 0
VALUE Ascend-Link-Compression Link-Comp-Stac 1
VALUE Ascend-Link-Compression Link-Comp-Stac-Draft-9 2
VALUE Ascend-Link-Compression Link-Comp-MS-Stac 3
VALUE Ascend-History-Weigh-Type History-Constant 0
VALUE Ascend-History-Weigh-Type History-Linear 1
VALUE Ascend-History-Weigh-Type History-Quadratic 2
VALUE Ascend-Callback Callback-No 0
VALUE Ascend-Callback Callback-Yes 1
VALUE Ascend-Expect-Callback Expect-Callback-No 0
VALUE Ascend-Expect-Callback Expect-Callback-Yes 1
VALUE Ascend-Data-Svc Switched-Voice-Bearer 0
VALUE Ascend-Data-Svc Nailed-56KR 1
VALUE Ascend-Data-Svc Nailed-64K 2
VALUE Ascend-Data-Svc Switched-64KR 3
VALUE Ascend-Data-Svc Switched-56K 4
VALUE Ascend-Data-Svc Switched-384KR 5
VALUE Ascend-Data-Svc Switched-384K 6
VALUE Ascend-Data-Svc Switched-1536K 7
VALUE Ascend-Data-Svc Switched-1536KR 8
VALUE Ascend-Data-Svc Switched-128K 9
VALUE Ascend-Data-Svc Switched-192K 10
VALUE Ascend-Data-Svc Switched-256K 11
VALUE Ascend-Data-Svc Switched-320K 12
VALUE Ascend-Data-Svc Switched-384K-MR 13
VALUE Ascend-Data-Svc Switched-448K 14
VALUE Ascend-Data-Svc Switched-512K 15
VALUE Ascend-Data-Svc Switched-576K 16
VALUE Ascend-Data-Svc Switched-640K 17
VALUE Ascend-Data-Svc Switched-704K 18
VALUE Ascend-Data-Svc Switched-768K 19
VALUE Ascend-Data-Svc Switched-832K 20
VALUE Ascend-Data-Svc Switched-896K 21
VALUE Ascend-Data-Svc Switched-960K 22
VALUE Ascend-Data-Svc Switched-1024K 23
VALUE Ascend-Data-Svc Switched-1088K 24
VALUE Ascend-Data-Svc Switched-1152K 25
VALUE Ascend-Data-Svc Switched-1216K 26
VALUE Ascend-Data-Svc Switched-1280K 27
VALUE Ascend-Data-Svc Switched-1344K 28
VALUE Ascend-Data-Svc Switched-1408K 29
VALUE Ascend-Data-Svc Switched-1472K 30
VALUE Ascend-Data-Svc Switched-1600K 31
VALUE Ascend-Data-Svc Switched-1664K 32
VALUE Ascend-Data-Svc Switched-1728K 33
VALUE Ascend-Data-Svc Switched-1792K 34
VALUE Ascend-Data-Svc Switched-1856K 35
VALUE Ascend-Data-Svc Switched-1920K 36
VALUE Ascend-Data-Svc Switched-inherited 37
VALUE Ascend-Data-Svc Switched-restricted-bearer-x30 38
VALUE Ascend-Data-Svc Switched-clear-bearer-v110 39
VALUE Ascend-Data-Svc Switched-restricted-64-x30 40
VALUE Ascend-Data-Svc Switched-clear-56-v110 41
VALUE Ascend-Data-Svc Switched-modem 42
VALUE Ascend-Data-Svc Switched-atmodem 43
VALUE Ascend-Data-Svc Switched-V110-24-56 45
VALUE Ascend-Data-Svc Switched-V110-48-56 46
VALUE Ascend-Data-Svc Switched-V110-96-56 47
VALUE Ascend-Data-Svc Switched-V110-192-56 48
VALUE Ascend-Data-Svc Switched-V110-384-56 49
VALUE Ascend-Data-Svc Switched-V110-24-56R 50
VALUE Ascend-Data-Svc Switched-V110-48-56R 51
VALUE Ascend-Data-Svc Switched-V110-96-56R 52
VALUE Ascend-Data-Svc Switched-V110-192-56R 53
VALUE Ascend-Data-Svc Switched-V110-384-56R 54
VALUE Ascend-Data-Svc Switched-V110-24-64 55
VALUE Ascend-Data-Svc Switched-V110-48-64 56
VALUE Ascend-Data-Svc Switched-V110-96-64 57
VALUE Ascend-Data-Svc Switched-V110-192-64 58
VALUE Ascend-Data-Svc Switched-V110-384-64 59
VALUE Ascend-Data-Svc Switched-V110-24-64R 60
VALUE Ascend-Data-Svc Switched-V110-48-64R 61
VALUE Ascend-Data-Svc Switched-V110-96-64R 62
VALUE Ascend-Data-Svc Switched-V110-384-64R 64
VALUE Ascend-Data-Svc Switched-V110-192-64R 63
VALUE Ascend-Data-Svc Switched-Pots 68
VALUE Ascend-Data-Svc Switched-ATM 69
VALUE Ascend-Data-Svc Switched-FR 70
VALUE Ascend-Force-56 Force-56-No 0
VALUE Ascend-Force-56 Force-56-Yes 1
VALUE Ascend-PW-Lifetime Lifetime-In-Days 0
VALUE Ascend-PW-Warntime Days-Of-Warning 0
VALUE Ascend-PPP-VJ-1172 PPP-VJ-1172 1
VALUE Ascend-PPP-VJ-Slot-Comp VJ-Slot-Comp-No 1
VALUE Ascend-Require-Auth Not-Require-Auth 0
VALUE Ascend-Require-Auth Require-Auth 1
VALUE Ascend-Token-Immediate Tok-Imm-No 0
VALUE Ascend-Token-Immediate Tok-Imm-Yes 1
VALUE Ascend-DBA-Monitor DBA-Transmit 0
VALUE Ascend-DBA-Monitor DBA-Transmit-Recv 1
VALUE Ascend-DBA-Monitor DBA-None 2
VALUE Ascend-FR-Type Ascend-FR-DTE 0
VALUE Ascend-FR-Type Ascend-FR-DCE 1
VALUE Ascend-FR-Type Ascend-FR-NNI 2
VALUE Ascend-FR-Link-Mgt Ascend-FR-No-Link-Mgt 0
VALUE Ascend-FR-Link-Mgt Ascend-FR-T1-617D 1
VALUE Ascend-FR-Link-Mgt Ascend-FR-Q-933A 2
VALUE Ascend-FR-LinkUp Ascend-LinkUp-Default 0
VALUE Ascend-FR-LinkUp Ascend-LinkUp-AlwaysUp 1
VALUE Ascend-Multicast-Client Multicast-No 0
VALUE Ascend-Multicast-Client Multicast-Yes 1
VALUE Ascend-User-Acct-Type Ascend-User-Acct-None 0
VALUE Ascend-User-Acct-Type Ascend-User-Acct-User 1
VALUE Ascend-User-Acct-Type Ascend-User-Acct-User-Default 2
VALUE Ascend-User-Acct-Base Base-10 0
VALUE Ascend-User-Acct-Base Base-16 1
VALUE Ascend-DHCP-Reply DHCP-Reply-No 0
VALUE Ascend-DHCP-Reply DHCP-Reply-Yes 1
VALUE Ascend-Client-Assign-DNS DNS-Assign-No 0
VALUE Ascend-Client-Assign-DNS DNS-Assign-Yes 1
VALUE Ascend-Event-Type Ascend-ColdStart 1
VALUE Ascend-Event-Type Ascend-Session-Event 2
VALUE Ascend-BACP-Enable BACP-No 0
VALUE Ascend-BACP-Enable BACP-Yes 1
VALUE Ascend-Dialout-Allowed Dialout-Not-Allowed 0
VALUE Ascend-Dialout-Allowed Dialout-Allowed 1
VALUE Ascend-Shared-Profile-Enable Shared-Profile-No 0
VALUE Ascend-Shared-Profile-Enable Shared-Profile-Yes 1
VALUE Ascend-Temporary-Rtes Temp-Rtes-No 0
VALUE Ascend-Temporary-Rtes Temp-Rtes-Yes 1
# Ascend Disconnect Cause Values
VALUE Ascend-Disconnect-Cause No-Reason 0
VALUE Ascend-Disconnect-Cause Not-Applicable 1
VALUE Ascend-Disconnect-Cause Unknown 2
VALUE Ascend-Disconnect-Cause Call-Disconnected 3
VALUE Ascend-Disconnect-Cause CLID-Authentication-Failed 4
VALUE Ascend-Disconnect-Cause CLID-RADIUS-Timeout 5
VALUE Ascend-Disconnect-Cause Modem-No-DCD 10
VALUE Ascend-Disconnect-Cause DCD-Detected-Then-Inactive 11
VALUE Ascend-Disconnect-Cause Modem-Invalid-Result-Codes 12
VALUE Ascend-Disconnect-Cause TermSrv-User-Quit 20
VALUE Ascend-Disconnect-Cause TermSrv-Idle-Timeout 21
VALUE Ascend-Disconnect-Cause TermSrv-Exit-Telnet 22
VALUE Ascend-Disconnect-Cause TermSrv-No-IPaddr 23
VALUE Ascend-Disconnect-Cause TermSrv-Exit-Raw-TCP 24
VALUE Ascend-Disconnect-Cause TermSrv-Exit-Login-Failed 25
VALUE Ascend-Disconnect-Cause TermSrv-Exit-Raw-TCP-Disabled 26
VALUE Ascend-Disconnect-Cause TermSrv-CTRL-C-In-Login 27
VALUE Ascend-Disconnect-Cause TermSrv-Destroyed 28
VALUE Ascend-Disconnect-Cause TermSrv-User-Closed-VCon 29
VALUE Ascend-Disconnect-Cause TermSrv-VCon-Destroyed 30
VALUE Ascend-Disconnect-Cause TermSrv-Exit-Rlogin 31
VALUE Ascend-Disconnect-Cause TermSrv-Bad-Rlogin-Option 32
VALUE Ascend-Disconnect-Cause TermSrv-Not-Enough-Resources 33
VALUE Ascend-Disconnect-Cause MPP-No-NULL-Msg-Timeout 35
VALUE Ascend-Disconnect-Cause PPP-LCP-Timeout 40
VALUE Ascend-Disconnect-Cause PPP-LCP-Negotion-Failed 41
VALUE Ascend-Disconnect-Cause PPP-PAP-Auth-Failed 42
VALUE Ascend-Disconnect-Cause PPP-CHAP-Auth-Failed 43
VALUE Ascend-Disconnect-Cause PPP-Rmt-Auth-Failed 44
VALUE Ascend-Disconnect-Cause PPP-Rcv-Terminate-Req 45
VALUE Ascend-Disconnect-Cause PPP-Rcv-Close-Event 46
VALUE Ascend-Disconnect-Cause PPP-No-NCPs-Open 47
VALUE Ascend-Disconnect-Cause PPP-MP-Bundle-Unknown 48
VALUE Ascend-Disconnect-Cause PPP-LCP-Close-MP-Add-Fail 49
VALUE Ascend-Disconnect-Cause Session-Table-Full 50
VALUE Ascend-Disconnect-Cause Out-Of-Resources 51
VALUE Ascend-Disconnect-Cause Invalid-IP-Address 52
VALUE Ascend-Disconnect-Cause Hostname-Resolution-Failed 53
VALUE Ascend-Disconnect-Cause Bad-Or-Missing-Port-Number 54
VALUE Ascend-Disconnect-Cause Host-Reset 60
VALUE Ascend-Disconnect-Cause Connection-Refused 61
VALUE Ascend-Disconnect-Cause Connection-Timeout 62
VALUE Ascend-Disconnect-Cause Connection-Closed 63
VALUE Ascend-Disconnect-Cause Network-Unreachable 64
VALUE Ascend-Disconnect-Cause Host-Unreachable 65
VALUE Ascend-Disconnect-Cause Network-Unreachable-Admin 66
VALUE Ascend-Disconnect-Cause Host-Unreachable-Admin 67
VALUE Ascend-Disconnect-Cause Port-Unreachable 68
VALUE Ascend-Disconnect-Cause Session-Timeout 100
VALUE Ascend-Disconnect-Cause Invalid-Incoming-User 101
VALUE Ascend-Disconnect-Cause Disconnect-Due-To-Callback 102
VALUE Ascend-Disconnect-Cause Proto-Disabled-Or-Unsupported 120
VALUE Ascend-Disconnect-Cause Disconnect-Req-By-RADIUS 150
VALUE Ascend-Disconnect-Cause Disconnect-Req-By-Local-Admin 151
VALUE Ascend-Disconnect-Cause V110-Timeout-Sync-Retry-Exceed 160
VALUE Ascend-Disconnect-Cause PPP-Auth-Timeout-Exceeded 170
VALUE Ascend-Disconnect-Cause User-Executed-Do-Hangup 180
VALUE Ascend-Disconnect-Cause Remote-End-Hung-Up 185
VALUE Ascend-Disconnect-Cause Resource-Has-Been-Quiesced 190
VALUE Ascend-Disconnect-Cause Max-Call-Duration-Reached 195
# ascend connect progress codes
VALUE Ascend-Connect-Progress No-Progress 0
VALUE Ascend-Connect-Progress Call-Up 10
VALUE Ascend-Connect-Progress Modem-Up 30
VALUE Ascend-Connect-Progress Modem-Awaiting-DCD 31
VALUE Ascend-Connect-Progress Modem-Awaiting-Codes 32
VALUE Ascend-Connect-Progress TermSrv-Started 40
VALUE Ascend-Connect-Progress TermSrv-Raw-TCP-Started 41
VALUE Ascend-Connect-Progress TermSrv-Telnet-Started 42
VALUE Ascend-Connect-Progress TermSrv-Raw-TCP-Connected 43
VALUE Ascend-Connect-Progress TermSrv-Telnet-Connected 44
VALUE Ascend-Connect-Progress TermSrv-Rlogin-Started 45
VALUE Ascend-Connect-Progress TermSrv-Rlogin-Connected 46
VALUE Ascend-Connect-Progress Modem-Outdial-Call-Up 50
VALUE Ascend-Connect-Progress LAN-Session-Up 60
VALUE Ascend-Connect-Progress LCP-Opening 61
VALUE Ascend-Connect-Progress CCP-Opening 62
VALUE Ascend-Connect-Progress IPNCP-Opening 63
VALUE Ascend-Connect-Progress BNCP-Opening 64
VALUE Ascend-Connect-Progress LCP-Opened 65
VALUE Ascend-Connect-Progress CCP-Opened 66
VALUE Ascend-Connect-Progress IPNCP-Opened 67
VALUE Ascend-Connect-Progress BNCP-Opened 68
VALUE Ascend-Connect-Progress LCP-State-Initial 69
VALUE Ascend-Connect-Progress LCP-State-Starting 70
VALUE Ascend-Connect-Progress LCP-State-Closed 71
VALUE Ascend-Connect-Progress LCP-State-Stopped 72
VALUE Ascend-Connect-Progress LCP-State-Closing 73
VALUE Ascend-Connect-Progress LCP-State-Stopping 74
VALUE Ascend-Connect-Progress LCP-State-Request-Sent 75
VALUE Ascend-Connect-Progress LCP-State-Ack-Received 76
VALUE Ascend-Connect-Progress LCP-State-Ack-Sent 77
VALUE Ascend-Connect-Progress IPXNCP-Opened 80
VALUE Ascend-Connect-Progress ATNCP-Opened 81
VALUE Ascend-Connect-Progress BACP-Opening 82
VALUE Ascend-Connect-Progress BACP-Opened 83
VALUE Ascend-Connect-Progress V110-Up 90
VALUE Ascend-Connect-Progress V110-State-Opened 91
VALUE Ascend-Connect-Progress V110-State-Carrier 92
VALUE Ascend-Connect-Progress V110-State-Reset 93
VALUE Ascend-Connect-Progress V110-State-Closed 94
VALUE Ascend-ATM-Direct ATM-Direct-No 0
VALUE Ascend-ATM-Direct ATM-Direct-Yes 1
VALUE Ascend-ATM-Fault-Management VC-End-To-End-Loopback 2
VALUE Ascend-ATM-Fault-Management VC-No-Loopback 0
VALUE Ascend-ATM-Fault-Management VC-Segment-Loopback 1
VALUE Ascend-Appletalk-Peer-Mode Appletalk-Peer-Dialin 1
VALUE Ascend-Appletalk-Peer-Mode Appletalk-Peer-Router 0
VALUE Ascend-Auth-Type Auth-Any 2
VALUE Ascend-Auth-Type Auth-CHAP 4
VALUE Ascend-Auth-Type Auth-Default 1
VALUE Ascend-Auth-Type Auth-MS-CHAP 5
VALUE Ascend-Auth-Type Auth-None 0
VALUE Ascend-Auth-Type Auth-PAP 3
VALUE Ascend-BIR-Enable BIR-Enable-No 0
VALUE Ascend-BIR-Enable BIR-Enable-Yes 1
VALUE Ascend-BIR-Proxy BIR-Proxy-No 0
VALUE Ascend-BIR-Proxy BIR-Proxy-Yes 1
VALUE Ascend-Bi-Directional-Auth Bi-Directional-Auth-Allowed 1
VALUE Ascend-Bi-Directional-Auth Bi-Directional-Auth-None 0
VALUE Ascend-Bi-Directional-Auth Bi-Directional-Auth-Required 2
VALUE Ascend-Bridge-Non-PPPoE Bridge-Non-PPPoE-No 0
VALUE Ascend-Bridge-Non-PPPoE Bridge-Non-PPPoE-Yes 1
VALUE Ascend-Cache-Refresh Refresh-No 0
VALUE Ascend-Cache-Refresh Refresh-Yes 1
VALUE Ascend-Call-Direction Ascend-Call-Direction-Incoming 0
VALUE Ascend-Call-Direction Ascend-Call-Direction-Outgoing 1
VALUE Ascend-Calling-Id-Number-Plan Data 3
VALUE Ascend-Calling-Id-Number-Plan ISDN-Telephony 1
VALUE Ascend-Calling-Id-Number-Plan National 8
VALUE Ascend-Calling-Id-Number-Plan Private 9
VALUE Ascend-Calling-Id-Number-Plan Telex 4
VALUE Ascend-Calling-Id-Number-Plan Unknown 0
VALUE Ascend-Calling-Id-Presentatn Allowed 0
VALUE Ascend-Calling-Id-Presentatn Number-Not-Available 2
VALUE Ascend-Calling-Id-Presentatn Restricted 1
VALUE Ascend-Calling-Id-Screening Network-Provided 3
VALUE Ascend-Calling-Id-Screening User-Not-Screened 0
VALUE Ascend-Calling-Id-Screening User-Provided-Failed 2
VALUE Ascend-Calling-Id-Screening User-Provided-Passed 1
VALUE Ascend-Calling-Id-Type-Of-Num Abbreviated-Number 6
VALUE Ascend-Calling-Id-Type-Of-Num International-Number 1
VALUE Ascend-Calling-Id-Type-Of-Num National-Number 2
VALUE Ascend-Calling-Id-Type-Of-Num Network-Specific 3
VALUE Ascend-Calling-Id-Type-Of-Num Subscriber-Number 4
VALUE Ascend-Calling-Id-Type-Of-Num Unknown 0
VALUE Ascend-Ckt-Type Ascend-PVC 0
VALUE Ascend-Ckt-Type Ascend-SVC 1
VALUE Ascend-Client-Assign-WINS WINS-Assign-No 0
VALUE Ascend-Client-Assign-WINS WINS-Assign-Yes 1
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-1280000 10
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-1600000 9
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-1920000 8
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-2240000 7
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-2560000 6
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-2688000 5
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-3200000 4
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-4480000 3
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-5120000 2
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-6272000 1
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-640000 12
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-7168000 0
VALUE Ascend-Dsl-Downstream-Limit adslcap-dn-960000 11
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-128000 121
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-1280000 114
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-1600000 113
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-1920000 112
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-2240000 111
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-256000 120
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-2560000 110
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-2688000 109
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-3200000 108
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-384000 119
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-4480000 107
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-512000 118
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-5120000 106
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-6272000 105
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-640000 117
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-7168000 104
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-768000 116
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-8000000 103
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-8960000 102
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-9504000 101
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-960000 115
VALUE Ascend-Dsl-Downstream-Limit adsldmt-dn-auto 100
VALUE Ascend-Dsl-Rate-Mode Rate-Mode-AutoBaud 1
VALUE Ascend-Dsl-Rate-Mode Rate-Mode-Single 2
VALUE Ascend-Dsl-Rate-Type Rate-Type-AdslCap 2
VALUE Ascend-Dsl-Rate-Type Rate-Type-AdslDmt 4
VALUE Ascend-Dsl-Rate-Type Rate-Type-AdslDmtCell 3
VALUE Ascend-Dsl-Rate-Type Rate-Type-Disabled 0
VALUE Ascend-Dsl-Rate-Type Rate-Type-Sdsl 1
VALUE Ascend-Dsl-Upstream-Limit adsldmt-up-896000 153
VALUE Ascend-Dsl-Upstream-Limit adslcap-up-1088000 50
VALUE Ascend-Dsl-Upstream-Limit adslcap-up-272000 56
VALUE Ascend-Dsl-Upstream-Limit adslcap-up-408000 55
VALUE Ascend-Dsl-Upstream-Limit adslcap-up-544000 54
VALUE Ascend-Dsl-Upstream-Limit adslcap-up-680000 53
VALUE Ascend-Dsl-Upstream-Limit adslcap-up-816000 52
VALUE Ascend-Dsl-Upstream-Limit adslcap-up-952000 51
VALUE Ascend-Dsl-Upstream-Limit adsldmt-up-1088000 151
VALUE Ascend-Dsl-Upstream-Limit adsldmt-up-128000 160
VALUE Ascend-Dsl-Upstream-Limit adsldmt-up-256000 159
VALUE Ascend-Dsl-Upstream-Limit adsldmt-up-384000 158
VALUE Ascend-Dsl-Upstream-Limit adsldmt-up-512000 157
VALUE Ascend-Dsl-Upstream-Limit adsldmt-up-640000 156
VALUE Ascend-Dsl-Upstream-Limit adsldmt-up-768000 155
VALUE Ascend-Dsl-Upstream-Limit adsldmt-up-800000 154
VALUE Ascend-Dsl-Upstream-Limit adsldmt-up-928000 152
VALUE Ascend-Dsl-Upstream-Limit adsldmt-up-auto 150
VALUE Ascend-Dsl-Upstream-Limit sdsl-1168000 5
VALUE Ascend-Dsl-Upstream-Limit sdsl-144000 0
VALUE Ascend-Dsl-Upstream-Limit sdsl-1552000 6
VALUE Ascend-Dsl-Upstream-Limit sdsl-2320000 7
VALUE Ascend-Dsl-Upstream-Limit sdsl-272000 1
VALUE Ascend-Dsl-Upstream-Limit sdsl-400000 2
VALUE Ascend-Dsl-Upstream-Limit sdsl-528000 3
VALUE Ascend-Dsl-Upstream-Limit sdsl-784000 4
VALUE Ascend-FR-Link-Status-Dlci Ascend-FR-LMI-Dlci-0 0
VALUE Ascend-FR-Link-Status-Dlci Ascend-FR-LMI-Dlci-1023 1023
VALUE Ascend-Filter-Required Required-No 0
VALUE Ascend-Filter-Required Required-Yes 1
VALUE Ascend-IP-Pool-Chaining IP-Pool-Chaining-No 0
VALUE Ascend-IP-Pool-Chaining IP-Pool-Chaining-Yes 1
VALUE Ascend-IP-TOS IP-TOS-Cost 2
VALUE Ascend-IP-TOS IP-TOS-Disabled 1
VALUE Ascend-IP-TOS IP-TOS-Latency 16
VALUE Ascend-IP-TOS IP-TOS-Normal 0
VALUE Ascend-IP-TOS IP-TOS-Reliability 4
VALUE Ascend-IP-TOS IP-TOS-Throughput 8
VALUE Ascend-IP-TOS-Apply-To IP-TOS-Apply-To-Both 3072
VALUE Ascend-IP-TOS-Apply-To IP-TOS-Apply-To-Incoming 1024
VALUE Ascend-IP-TOS-Apply-To IP-TOS-Apply-To-Outgoing 2048
VALUE Ascend-IP-TOS-Precedence IP-TOS-Precedence-Pri-Five 160
VALUE Ascend-IP-TOS-Precedence IP-TOS-Precedence-Pri-Four 128
VALUE Ascend-IP-TOS-Precedence IP-TOS-Precedence-Pri-Normal 0
VALUE Ascend-IP-TOS-Precedence IP-TOS-Precedence-Pri-One 32
VALUE Ascend-IP-TOS-Precedence IP-TOS-Precedence-Pri-Seven 224
VALUE Ascend-IP-TOS-Precedence IP-TOS-Precedence-Pri-Six 192
VALUE Ascend-IP-TOS-Precedence IP-TOS-Precedence-Pri-Three 96
VALUE Ascend-IP-TOS-Precedence IP-TOS-Precedence-Pri-Two 64
VALUE Ascend-IPX-Header-Compression IPX-Header-Compression-No 0
VALUE Ascend-IPX-Header-Compression IPX-Header-Compression-Yes 1
VALUE Ascend-NAS-Port-Format 1_2_2 3
VALUE Ascend-NAS-Port-Format 2_4_5_5 2
VALUE Ascend-NAS-Port-Format 2_4_6_4 1
VALUE Ascend-NAS-Port-Format Unknown 0
VALUE Ascend-Numbering-Plan-ID ISDN-Numbering-Plan 1
VALUE Ascend-Numbering-Plan-ID Private-Numbering-Plan 9
VALUE Ascend-Numbering-Plan-ID Unknown-Numbering-Plan 0
VALUE Ascend-PPPoE-Enable PPPoE-No 0
VALUE Ascend-PPPoE-Enable PPPoE-Yes 1
VALUE Ascend-PW-Lifetime Lifetime-In-Days 0
VALUE Ascend-PW-Warntime Days-Of-Warning 0
VALUE Ascend-Port-Redir-Protocol Ascend-Proto-TCP 6
VALUE Ascend-Port-Redir-Protocol Ascend-Proto-UDP 17
VALUE Ascend-Private-Route-Required Required-No 0
VALUE Ascend-Private-Route-Required Required-Yes 1
VALUE Ascend-Require-Auth Not-Require-Auth 0
VALUE Ascend-Require-Auth Require-Auth 1
VALUE Ascend-Route-Appletalk Route-Appletalk-No 0
VALUE Ascend-Route-Appletalk Route-Appletalk-Yes 1
VALUE Ascend-Route-IP Route-IP-No 0
VALUE Ascend-Route-IP Route-IP-Yes 1
VALUE Ascend-Route-IPX Route-IPX-No 0
VALUE Ascend-Route-IPX Route-IPX-Yes 1
VALUE Ascend-SVC-Enabled Ascend-SVC-Enabled-No 0
VALUE Ascend-SVC-Enabled Ascend-SVC-Enabled-Yes 1
VALUE Ascend-Send-Auth Send-Auth-CHAP 2
VALUE Ascend-Send-Auth Send-Auth-MS-CHAP 3
VALUE Ascend-Send-Auth Send-Auth-None 0
VALUE Ascend-Send-Auth Send-Auth-PAP 1
VALUE Ascend-Service-Type Ascend-Service-Type-ATM 20
VALUE Ascend-Service-Type Ascend-Service-Type-Combinet 7
VALUE Ascend-Service-Type Ascend-Service-Type-EuRaw 9
VALUE Ascend-Service-Type Ascend-Service-Type-EuUi 10
VALUE Ascend-Service-Type Ascend-Service-Type-FR 8
VALUE Ascend-Service-Type Ascend-Service-Type-HdlcNrm 21
VALUE Ascend-Service-Type Ascend-Service-Type-IpFax 19
VALUE Ascend-Service-Type Ascend-Service-Type-MP 15
VALUE Ascend-Service-Type Ascend-Service-Type-MPP 5
VALUE Ascend-Service-Type Ascend-Service-Type-NetToNet 25
VALUE Ascend-Service-Type Ascend-Service-Type-None 1
VALUE Ascend-Service-Type Ascend-Service-Type-NotUsed 0
VALUE Ascend-Service-Type Ascend-Service-Type-Other 2
VALUE Ascend-Service-Type Ascend-Service-Type-PPP 3
VALUE Ascend-Service-Type Ascend-Service-Type-PseuTunPPP 18
VALUE Ascend-Service-Type Ascend-Service-Type-RawTcp 13
VALUE Ascend-Service-Type Ascend-Service-Type-Slip 4
VALUE Ascend-Service-Type Ascend-Service-Type-Telnet 11
VALUE Ascend-Service-Type Ascend-Service-Type-TelnetBin 12
VALUE Ascend-Service-Type Ascend-Service-Type-TermServer 14
VALUE Ascend-Service-Type Ascend-Service-Type-VirtualConn 16
VALUE Ascend-Service-Type Ascend-Service-Type-Visa2 23
VALUE Ascend-Service-Type Ascend-Service-Type-VoIp 22
VALUE Ascend-Service-Type Ascend-Service-Type-X25 6
VALUE Ascend-Service-Type Ascend-Service-Type-X25DChan 17
VALUE Ascend-Session-Type Ascend-Session-G711-Alaw 3
VALUE Ascend-Session-Type Ascend-Session-G711-Ulaw 2
VALUE Ascend-Session-Type Ascend-Session-G723 4
VALUE Ascend-Session-Type Ascend-Session-G723-64KPS 6
VALUE Ascend-Session-Type Ascend-Session-G728 7
VALUE Ascend-Session-Type Ascend-Session-G729 5
VALUE Ascend-Session-Type Ascend-Session-RT24 8
VALUE Ascend-Session-Type Ascend-Session-Unknown 1
VALUE Ascend-Session-Type Ascend-Session-Unused 0
VALUE Ascend-Shared-Profile-Enable Shared-Profile-No 0
VALUE Ascend-Shared-Profile-Enable Shared-Profile-Yes 1
VALUE Ascend-Source-IP-Check Source-IP-Check-No 0
VALUE Ascend-Source-IP-Check Source-IP-Check-Yes 1
VALUE Ascend-TS-Idle-Mode TS-Idle-Input 1
VALUE Ascend-TS-Idle-Mode TS-Idle-Input-Output 2
VALUE Ascend-TS-Idle-Mode TS-Idle-None 0
VALUE Ascend-Token-Immediate Tok-Imm-No 0
VALUE Ascend-Token-Immediate Tok-Imm-Yes 1
VALUE Ascend-Tunneling-Protocol ATMP-Tunnel 0
VALUE Ascend-Tunneling-Protocol VTP-Tunnel 1
VALUE Ascend-User-Acct-Base Base-10 0
VALUE Ascend-User-Acct-Base Base-16 1
VALUE Ascend-User-Acct-Type Ascend-User-Acct-None 0
VALUE Ascend-User-Acct-Type Ascend-User-Acct-User 1
VALUE Ascend-User-Acct-Type Ascend-User-Acct-User-Default 2
VALUE Ascend-X25-Pad-X3-Profile CC_SSP 4
VALUE Ascend-X25-Pad-X3-Profile CC_TSP 5
VALUE Ascend-X25-Pad-X3-Profile CRT 0
VALUE Ascend-X25-Pad-X3-Profile CUSTOM 11
VALUE Ascend-X25-Pad-X3-Profile DEFAULT 2
VALUE Ascend-X25-Pad-X3-Profile HARDCOPY 6
VALUE Ascend-X25-Pad-X3-Profile HDX 7
VALUE Ascend-X25-Pad-X3-Profile INFONET 1
VALUE Ascend-X25-Pad-X3-Profile NULL 10
VALUE Ascend-X25-Pad-X3-Profile POS 9
VALUE Ascend-X25-Pad-X3-Profile SCEN 3
VALUE Ascend-X25-Pad-X3-Profile SHARK 8
VALUE Ascend-X25-Reverse-Charging Reverse-Charging-No 0
VALUE Ascend-X25-Reverse-Charging Reverse-Charging-Yes 1
|