AT9924t

From RARForge
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

commands

HELP

  • my help was not set - luckily there was a .hlp file under 'show files' so I set it..

<source lang=bash> show file

Filename Device Size Created Locks


89-266.rez flash 4179688 13-Apr-2010 16:13:00 0 89-266a.hlp flash 148723 13-Apr-2010 16:14:45 0 </source> <source lang=bash>

  1. set HELP

set help=89-266a.hlp </source> <source lang=bash> help

       AT-9900 Series Switches          HELP v2.6.6 Rev A, 08-Nov-2004


 Help is available on the following topics:
   HELP APPLETALK            Appletalk commands
   HELP ASYNCHRONOUS         Async ports, TTY
   HELP BGP                  BGP version 4 routing protocol commands
   HELP BOOTP                BootP relay commands
   HELP DHCP                 DHCP server commands
   HELP DHCP6                DHCP6 commands
   HELP DVMRP                Distance Vector Multicast Routing commands
 ...

</source>

IP Config - Route

<source lang=bash> enable ip add ip int=vlan1209 ip=10.69.1.249 mask=255.255.255.0 set ip int=vlan1209 mul=on add ip rou=0.0.0.0 mask=0.0.0.0 int=vlan1209 next=10.69.1.1 </source>

Save Config

<source lang=bash> create conf=config.cfg

  1. to set the config for boot, this only needs to be done once.

set conf=config.cfg </source> <source lang=bash>

  1. I created an alias, to save the config easier

add alias="write" string="create con=config.cfg"

  1. now we just type 'write to save the config'

write </source>

VLANs

Creating

<source lang=bash> create vlan="external" vid=1208 create vlan="private" vid=1209 create vlan="drbd" vid=1300 </source>

Adding to Ports

<source lang=bash> add vlan="1300" port=21-24 add vlan="1209" port=9-11 frame=tagged </source>

SNMP

<source lang=bash> enable snmp create snmp community=<private> access=write open=on add snmp community=<private> traphost=10.69.1.9 </source>

NTP

<source lang=bash> enable ntp set ntp utc=-07:00:00 add ntp peer=<ip of NTP server> </source>