SEOWON INTECH SWC-3100 Manuale utente

1
SEOWON INTECH
SWC-3100(Simple CPE)
User Guide

2
Contents
1. Simple CPE Overview ......................................................................................................3
1.1. Product Introduction...............................................................................................3
1.2. Packaging Contents.................................................................................................4
1.3. Description of Product Functions.......................................................................5
1.4. Network Configuration...........................................................................................6
1.5. WiMAX Wired LAN Connection (CPE)...............................................................8
2. A simple WiMAX gateway Implementation...................................................................9
2.1. WiMAX Connection Manager...............................................................................9
2.2. Connection Manager User Interface.....................................................................9
2.2.1. System Commands.......................................................................................10
2.2.2. WiMAX Connection Manager Commands...............................................10
2.2.3. WiMAX Text DM Commands....................................................................11
2.2.4. Command Batch Processing.......................................................................11
2.3. Control of connection to WiMax network...........................................................11
2.3.1. Connection with dynamic IP allocation.....................................................11
2.3.2. Connection with static IP allocation...........................................................12
2.3.3. Enabling authentication mode....................................................................12
2.4. Configuring CPE with web browser....................................................................14
2.4.1. Network configuration................................................................................15
2.4.2. Firmware upgrade.......................................................................................20
2.4.3. EAP configuration.......................................................................................21

3
1. A Simple CPE Overview
1.1 Product Introduction
This product receives external WiMAX signals to construct in-building infrastructure on WiMAX network
and is covered by Ethernet network internally
It is also a wired and wireless internet router which allows several systems to use one internet address
supplied by high-speed internet service provider.
◎ Functional Features
Function Features
IEEE802.16e WiMAX
Support Wave1 = DL : 10Mbps / UL : 4Mbps
Wave2 = DL : 20Mbps / UL : 6Mbps
IEEE802.3u Ethernet Support 10/100Mbps wired LAN connectable
LAN Port 1 Port 10/100Mbps Ethernet Switch built-in
Cable Auto Sense Straight (Direct) or Cross Cable auto sensing
NAT function Possible of max. 253 wired and connections and internet router*
Firewall function Manages basic firewall and IP/Port/based access

4
1.2 Packaging Contents
<Figure: Main Unit> <Figure: CD> <Figure: Antenna X 2>
<Figure: Quick Guide> <Figure: UTP Cable> <Figure: USB Cable>
<Figure: Adapter>

5
1.3 Description of Product Functions(Cont’)
Simple CPE Rear Side
Description
Item Details
External
Antenna ANT1: WiMAX Diversity
ANT2: WiMAX Main
Separable external antenna
User external type antenna attachable
* Antenna Classification
- 3: 2.3GHz
- 5: 2.5GHz
- blank : 3.5GHz
Power S/W Power On/Off Switch (On/Off by pressing right or left)
DC IN Power Adapter connection (DC 5V)
LAN PC or Hub connection
Factory Reset Restore the Simple CPE Factory Default
[Note] If you lost LOGIN password for router or IP address after change, use the Reset switch to restore its
original Factory Default settings.
WiMAX Main
Antenna
WiMAX
Diversit
y
Antenna
Power
Switch
Hardware
Reset
PC
Power Adapter

6
1.4 Network Configuration
PC
Gateway
Internet
Local Network External Network
WiMAX
<Simple CPE Connection Example>
LED Normal Operation Actions to be taken at failure
PWR ON when connecting adapter Check for adapter power failure
LAN ON when cable is connected
normally Check cable connection and PC power supply
WiMAX
RSSI Representation WiMAX received
signal strength indication(RSSI), on
when the mode was selected router.
Check the mode selected router
SEOWONINTECH
To Verify normal operation of router LEDs
You have to check if each LED of the router operates properly after connecting router, modem, and PC
with LAN cable as follows:.

7
If LED light is not in “normal operation”, check if there is any failure according to actions to be taken.
Install a router after connecting to network.
„ If normal connection between router and PC is checked, you have to set up PC and router.
Router setup is to connect a router to Internet, which is suitable for the Internet line type that is connected to
router. It is progressed by referring to Chapter II, depending on Internet type.

8
1.5 WiMAX Wired LAN Connection (CPE)
PC
WiMAX

9
2. A Simple WiMAX gateway Implementation
Included in the software development package is the sample WiMAX gateway implementation. The target
system has a WiMAX interface at one end and a Ethernet interface at the other end. The embedded
connection manager automatically makes a connection to the WiMAX network whenever it detects one. The
IP layer is configured to perform NAT so that the host in the inner (private) network can connect to internet
via external WiMAX network.
The implementation also includes a simple HTTPD daemon so that some of the device configuration can be
changed using the web browser from the host in the private network.
2.1. WiMAX Connection Manager
The WiMAX connection manager is responsible for the following:
Monitor the WiMAX device state
Initiate the connection
EAP supplicant (in preparation, only limited support for EAP-AKA with USIM)
Configure the WiMAX device.
IP configuration of WiMAX device.
The developer can change various parameters that affect the behavior of WiMAX device and the connection
manager. This is done by editing /etc/wcm.conf file. Controlling WiMAX connection manager by this file is
explained with example cases in section 5.3.
The connection manager reads this file on startup and performs the necessary actions. In addition, one can list
up the GCT WiMAX text DM commands in [DM command] section so that the connection manager executes
these commands in batch mode.
2.2. Connection Manager User Interface
The WiMAX connection manager provides command line user interface, whereby the user can execute
WiMAX commands on the terminal. By default, the WiMAX connection manager runs in the “monitoring
mode”, where it
[WiBro device]
mac_address=00:0a:3b:f0:10:50 /* Sets the WiMAX device MAC address */
[WiBro connection]
/* The connection manager automatically tries to connect to the network whenever it discovers the available network
*/
autoconnection_enable=YES
/* If dhcp_enable is set to YES, the connection manager runs DHCP client to acquire IP configurations from the
network. Otherwise, the IP informations should be statically configured */
dhcp_enable=YES
[WiBro authentication]
authentication_pkm_enable=YES
authentication_alpha_delimiter_enable=YES
#authentication_pkm_type=EAP-AKA
#authentication_pkm_type=EAP-MD5
#authentication_pkm_type=EAP-TLS
#authentication_pkm_type=EAP-TTLS-CHAP
authentication_pkm_type=EAP-TTLS-MSCHAPV2

10
[DM command]
d ver
wb_ru
keeps showing log messages from the WiMAX MAC. The user can switch it to “interactive mode” by typing
in ‘q’ in the console. During interactive mode, all the MAC messages are temporarily suppressed and the
connection manager shows the prompt “DM>” for the user to enter commands. The user can also switch back
to “monitoring mode” by simply entering “Enter” key.
2.2.1. System Commands
2.2.1.1. param
This command shows the parameter block content.
2.2.1.2. version
This command shows the version of connection manager.
2.2.1.3. shell
This command is used to invoke a system shell (/bin/sh) inside the connection manager.
2.2.1.4. reboot
This command is used to reboot the system.
2.2.1.5. help
This command displays (not all) commands and their usage.
2.2.2. WiMAX Connection Manager Commands
2.2.2.1. wb_gs
This command is used to read the current state the device is in. The device can be in one of the following
states:
NULL: This is the initial device state when its modem and RF is turned off.
OUT OF ZONE: The device cannot locate any available WiMAX network
STANDBY: The device has achieved PHY and MAC synchronization and keeps listening to
DCD/UDC, DL-MAP, and UL-MAP from the base station.
NETENTRY: The device is in network entry procedure. It has the following sub-states:
NETENTRY_RANGING: The device is in initial ranging phase.
NETENTRY_SBC: The device is in SBC phase.
NETENTRY_PKM: The device is in PKM phase.
NETENTRY_REG: The device is in Registration phase.
NETENTRY_DSX: The device is in ISF creation phase.
ACTIVE: The device has successfully made connection to the network.
2.2.2.2. wb_ru
This command is used to turn on WiMAX modem and RF. The WiMAX device then starts scanning the
WiMAX network on pre-defined channel. If the device finds available WiMAX network, the device state is
changed to STANDBY; otherwise to OUT OF ZONE.
2.2.2.3. wb_rd
Indice
Altri manuali SEOWON INTECH Router di rete
Manuali Router di rete popolari di altre marche

NETGEAR
NETGEAR FS526T - Switch Manuale utente

Korenix
Korenix JetNet 5710G Series Manuale utente

Automated Logic
Automated Logic ZN551 Manuale del proprietario

Cisco
Cisco ASR 1000 Series Manuale dell'operatore

EnGenius
EnGenius ESR-9710 Manuale utente

Cisco
Cisco 805 Series Istruzioni operative e di sicurezza















