(42 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
This section describes a brief tutorial on how to install, access, and configure the imRAD device.<br> | This section describes a brief tutorial on how to install, access, and configure the imRAD device.<br> | ||
− | However, you have to the imRAD wiki for more details. | + | However, you have to read the imRAD wiki for more details. |
− | {{step|1|Mount your device in a | + | {{step|1|Mount your device in a network rack or on a table and connect one end of the ethernet cable to the first ethernet port(i.e. eth0). The ethernet ports of imRAD device support 10/100/1000 BASE-T.}} |
− | {{step|2| | + | {{step|2|Plugin the power cord and turn on the power switch that is located in the back of the device. |
− | The power supply supports the Universal AC input(i.e. 90 to 264 VAC). | + | The power supply supports the Universal AC input(i.e. 90 to 264 VAC).}} |
+ | |||
+ | {{step|3| | ||
+ | * Access the [[Command Line Interface (CLI, LYSH) | CLI]] by connecting your laptop directly to the console port(RJ-45 connector) that is located in front of the device. | ||
+ | * Start a terminal-emulation program on your laptop. | ||
+ | * Configure the terminal emulation software for 115,200 baud, 8 data bits, no parity, 1 stop bit, and no flow control. | ||
+ | * Press the "enter" key one or more times on your laptop until you see the login prompt. | ||
+ | |||
+ | [[File:serial1.png]] | ||
}} | }} | ||
+ | {{step|4| | ||
+ | Login to the device. The default or initial Username and Password for login are '''ladmin''' and '''1111''' respectively. And then, change the default password to another to access the [[Command Line Interface (CLI, LYSH) | imRAD CLI]](i.e. "LYSH"). | ||
+ | |||
+ | After accessing the CLI, you have to set an IP address on the device. Please refer to the [[CLI - Networking]] section to know how to configure an IP address. Following is a simple example. | ||
+ | {{note|If you use the same address as the IP address that was configured in the [[Product activation|activation]] step, skip this step. If you use a different IP address, delete the existing address by <code>ip delete <interface name> <ip/subnet></code> command, and then enter a new IP address.}} | ||
+ | <pre> | ||
+ | LYSH@MyHostName# configure // Enters configuration mode. | ||
+ | LYSH@MyHostName(config)# ip add eth0 192.168.0.3/24 192.168.0.1 // Configures an IPv4 address, subnet, and gateway.(i.e. 192.168.0.1) | ||
+ | interface setting was added. Do you want to apply these settings?(y/n): y | ||
+ | ... | ||
+ | LYSH@MyHostName(config)# exit | ||
+ | </pre> | ||
− | {{ | + | {{note|Configure [[CLI_-_Networking#nameserver | nameserver ]] and [[CLI - Hostname | hostname]] on a device |
− | + | <pre> | |
− | + | LYSH@MyHostName# configure | |
+ | LYSH@MyHostName(config)# nameserver add eth0 8.8.8.8 // add a nameserver, 8.8.8.8, into the eth0 interface. | ||
+ | LYSH@MyHostName(config)# hostname set NewHostName | ||
+ | LYSH@MyHostName(config)# exit | ||
+ | </pre> | ||
+ | }} | ||
− | + | For more commands, Please refer to the [[Command Line Interface (CLI, LYSH)]] section.}} | |
− | {{ | + | {{step|5| |
+ | Open the imRAD [[Management Interface]] page from the web browser on your PC and log in. The URL is '''https'''://<imrad.configured.ip.address>. | ||
+ | {{note|Do not open the page using Internet Explorer whose version is less than 11.0.}} | ||
− | + | The login user is "'''admin'''" and the password is "'''1111'''". And then, you must change the default password to another. | |
+ | {{note| The first time you open the management interface, you may encounter a Certificate error on your browser. please read the [[Management Interface]].}} | ||
− | {{ | + | {{note| If the web browser on your computer does not connect to the Management Interface, Check the following. |
− | + | * ping to the IP address of the imRAD device from your PC or laptop.<br> | |
+ | * ping to the gateway IP address configured from the device.<br> | ||
+ | * restart the web server by entering <code>systemctl restart apache2</code> on the [[CLI_-_Services(daemons)#Control_the_Service | CLI]].}} | ||
+ | }} | ||
− | {{step| | + | {{step|6|Configure the imRAD RADIUS and DHCP service on the management interface. |
* [[ImRAD_RADIUS#Configuring_RADIUS | Configuring the RADIUS]] | * [[ImRAD_RADIUS#Configuring_RADIUS | Configuring the RADIUS]] | ||
* [[ImRAD_DHCP#Configuing_DHCP | Configuring the DHCP]] | * [[ImRAD_DHCP#Configuing_DHCP | Configuring the DHCP]] | ||
{{note| | {{note| | ||
− | After configuring the RADIUS, you may leave out configuring the DHCP | + | After configuring the RADIUS, you may leave out configuring the DHCP in case that you have already DHCP servers and want to use the existing servers.}} }} |
− | }} |
Latest revision as of 18:58, 3 February 2022
This section describes a brief tutorial on how to install, access, and configure the imRAD device.
However, you have to read the imRAD wiki for more details.
Step 1
Step 2
Step 3
- Access the CLI by connecting your laptop directly to the console port(RJ-45 connector) that is located in front of the device.
- Start a terminal-emulation program on your laptop.
- Configure the terminal emulation software for 115,200 baud, 8 data bits, no parity, 1 stop bit, and no flow control.
- Press the "enter" key one or more times on your laptop until you see the login prompt.
Step 4
Login to the device. The default or initial Username and Password for login are ladmin and 1111 respectively. And then, change the default password to another to access the imRAD CLI(i.e. "LYSH").
After accessing the CLI, you have to set an IP address on the device. Please refer to the CLI - Networking section to know how to configure an IP address. Following is a simple example.
If you use the same address as the IP address that was configured in the activation step, skip this step. If you use a different IP address, delete the existing address by ip delete <interface name> <ip/subnet>
command, and then enter a new IP address.
LYSH@MyHostName# configure // Enters configuration mode. LYSH@MyHostName(config)# ip add eth0 192.168.0.3/24 192.168.0.1 // Configures an IPv4 address, subnet, and gateway.(i.e. 192.168.0.1) interface setting was added. Do you want to apply these settings?(y/n): y ... LYSH@MyHostName(config)# exit
Configure nameserver and hostname on a device
LYSH@MyHostName# configure LYSH@MyHostName(config)# nameserver add eth0 8.8.8.8 // add a nameserver, 8.8.8.8, into the eth0 interface. LYSH@MyHostName(config)# hostname set NewHostName LYSH@MyHostName(config)# exit
Step 5
Open the imRAD Management Interface page from the web browser on your PC and log in. The URL is https://<imrad.configured.ip.address>.
Do not open the page using Internet Explorer whose version is less than 11.0.
The login user is "admin" and the password is "1111". And then, you must change the default password to another.
The first time you open the management interface, you may encounter a Certificate error on your browser. please read the Management Interface.
If the web browser on your computer does not connect to the Management Interface, Check the following.
- ping to the IP address of the imRAD device from your PC or laptop.
- ping to the gateway IP address configured from the device.
- restart the web server by entering
systemctl restart apache2
on the CLI.
Step 6
After configuring the RADIUS, you may leave out configuring the DHCP in case that you have already DHCP servers and want to use the existing servers.