Switched WLAN nach IEEE 802.11b/g/a und n


Netzaufbau:



... keine Roaming Zeiten,
da alle APs den gleichen Kanal benutzen und der Switch die auflaufenden Pakete filtert.
Extricom’s Interference-FreeTM Architecture
  • The same channel is placed everywhere
  • Placement of AP is determined based only on where capacity is needed
  • The WLAN Switch performs the function of the traditional access point
  • Client associates with the Switch, not the AP
  • The switch prevents interference through packet-by-packet control of AP transmissions
  • The AP acts as a radio point; performs no transmission processing; contains no software
  • Each UltraThin Access Point contains multiple radios
Switch controls multiple overlapping “channel blankets”

... no cellplaning



WLAN Switch 8-port





              EXSW-800 – 8-port WLAN Switch

  • Supports up to 8 UltraThin APs (2-radio)
  • 100Mb/s backbone to the LAN
  • Hardware based 802.11i encryption
  • Delivers PoE to the APs
  • WPA2 - AES (CCMP)
  • IEEE 802.11i
  • Roaming
  • intra-switch 0 msec
  • inter-switch <50 msec
             Datenblatt


WLAN Switch 24-port






             EXSW-2400 – 24-port WLAN Switch


  • Supports up to 24 UltraThin APs (2-radio)
  • 2x 1000Mb/s backbone to the LAN
  • Hardware based 802.11i encryption
  • Delivers PoE to the Aps
  • WPA2 - AES (CCMP)
  • IEEE 802.11i
  • Roaming
  • intra-switch 0 msec
  • inter-switch <50 msec

             Datenblatt


UltraThin Dual Access Point




             EXRP20 UltraThin AP


  • UltraThin - No intelligence in the device
  • Two 802.11a/b/g compliant radios WiFi
  • 100Mb/s backbone to the WLAN switch
  • 802.3af Power over Ethernet (PoE)
  • optional external antenna connector
  • Quality of Service
  • Multiple SSIDs 16 / VLAN
             Datenblatt

UltraThin Quadro Access Point




EXRP40 UltraThin AP


  • UltraThin - No intelligence in the device
  • four 802.11a/b/g compliant radios WiFi
  • 100Mb/s backbone to the WLAN switch
  • 802.3af Power over Ethernet (PoE)
  • optional external antenna connector
  • Quality of Service
  • Multiple SSIDs 16 / VLAN

Datenblatt

 

vorherige Seite

 
 
 
#!/usr/bin/perl #!/usr/local/bin/perl ######################################################################################### # aconon® cms # # _ ____ ___ _ # # __ _ ___ ___ _ __ ___ ___(r) / ___| ___ / __| |_ _ _ __ _ _ __ ___ # # / _` |/ __|/ _ \| '_ \ / _ \| '_ \ \___ \ / _ \| _|| __/| | _ | |/ _` | '__|/ __\ # # | (_| | (__| (_) | | | | (_) | | | | ___) | (_) | | | |_ | || || | (_| | | | _| # # \__,_|\___|\___/|_| |_|\___/|_| |_| |____/ \___/|_| \__| \_____/ \__,_|_| \___/ # # # # Copyright © 2001 http://www.aconon.de - all rights reserved - Alle Rechte vorbehalten # ######################################################################################### # sort=a-z aufsteigend sortiert # sort=z-a absteigend sortiert # sort=random zufaellig sortiert # select=BEGRIFF nur Content-Seiten anzeigen, die BEGRIFF in einem der Select Meta-Tags haben # selectMeta=METANAME wenn Metatag "select" nicht vorhanden ist, nimm diesen (Beispiel text2) # max=3 maximal 3 Content-Seiten anzeigen # alternierend=NAME Abwechselnd anderes aussehen einer Listenzeile # (ab der zweiten Zeile dieses tpl.NAME.txt) # nodouble=feld von jeder Content-Seite nur eine mit einem Begriff in diesem Feld anzeigen # (=1 oder =headline verhindert doppelte Eintraege aus dem Feld text1 oder headline) # ------------------------------------------------------------------------------------- # # ----- MAIN # ------------------------------------------------------------------------------------- # use CGI::Carp qw(fatalsToBrowser); print "Content-type: text/html\n\n"; ####################################################################### if($0 !~ /^list\.(cgi|pl)$/i && $0) { $this_dir = $0; } elsif($ENV{'SCRIPT_FILENAME'} && $ENV{'SCRIPT_FILENAME'} !~ /cgiwrap/) { $this_dir = $ENV{'SCRIPT_FILENAME'}; } elsif($ENV{'PATH_TRANSLATED'}) { $this_dir = $ENV{'PATH_TRANSLATED'}; } $this_dir =~ s/\/[^\/]*$// && unshift(@INC,"$this_dir"); $this_dir =~ s/\\[^\\]*$// && unshift(@INC,"$this_dir"); ####################################################################### # ACHTUNG KEINE &check_pass; EINBAUEN # DA DIESES PROGRAMM VOM WEBPAGE-BESUCHER AUFGERUFEN WIRD require 'module.pm'; loadModules(); use Time::Local; # Time-Modul &readparam; # read CGI parameters $cd = "$root/$input{'cd'}"; $ordner = "$url/$input{'cd'}"; $nodouble = $input{'nodouble'}; # nodouble # igg 28.11.2003 $richtung = $input{'sort'}; srand(); $random = $input{'random'}; $only = $input{'select'}; $selMeta = $input{'selectMeta'}; # $selMeta = Metatag, wenn kein Meta "select" vorhanden ist. # mne 04.12.2003 $max = $input{'max'}; if(!$max){$max = 9999} if (!$input{'tpl'}){ $templatename = "$verz_template/tpl.list.txt"; }else{ $templatename = "$verz_template/tpl.$input{'tpl'}.txt"; } if(!$dyndat){$dyndat = "shtml";} opendir(DIR, $cd) or print "$!"; foreach my $entry (readdir(DIR)) { next if $entry =~ /^\.$/; # um Verz. '.' zu ueberspringen. next if $entry =~ /^\.\.$/; # um Verz. '..' zu ueberspringen. next if $entry =~ /^_vti_cnf$/; # um FRONTPAGE Verz. zu ueberspringen. next if $entry =~ /^.hta/; # um .hta Dateien zu ueberspringen. next if $entry =~ /^([a-zA-Z0-9\_\-]+)\.css?$/; # um alle css Dateien zu ueberspringen. next if $entry =~ /^([a-zA-Z0-9\_\-]+)\.doc?$/; # um alle doc Dateien zu ueberspringen. next if $entry =~ /^([a-zA-Z0-9\_\-]+)\.cgi?$/; # um alle doc Dateien zu ueberspringen. next if $entry =~ /^([a-zA-Z0-9\_\-]+)\.pdf?$/; # um alle pdf Dateien zu ueberspringen. next if $entry =~ /^([a-zA-Z0-9\_\-]+)\.xls?$/; # um alle xls Dateien zu ueberspringen. next if $entry =~ /^([a-zA-Z0-9\_\-]+)\.txt?$/; # um alle TXT Dateien zu ueberspringen. next if $entry =~ /^([a-zA-Z0-9\_\-]+)\.aconon?$/; # um alle aconon Dateien zu ueberspringen. next if $entry =~ /^noList/; # um Datei die mit noList beginnen zu ueberspringen. if(!$input{'mitIndex'}){ # zurGams - cgs - 10.05.2005 15:36 next if $entry =~ /^index\./; # um index Datei zu ueberspringen. } next if $entry =~ /^lock\./; # um lock Datei zu ueberspringen. if ($entry !~ /\.htm*/i and $entry !~ /\.shtm*/i and $entry !~ /\.php*/i){$entry .= "/index.$dyndat";} push(@FILES,"$entry"); } closedir(DIR); open(TEMPLATE, "$templatename") or print "$!"; @TEMPLATE =