Commit e216d2b5 authored by Yann Garcia's avatar Yann Garcia
Browse files

Update README.md

parent c2463a9d
Loading
Loading
Loading
Loading
+10 −4
Original line number Original line Diff line number Diff line
@@ -54,20 +54,26 @@ make package/its_bridge/compile V=s
```
```


- Step 6: Install the package on the Gl.iNet mt300n-v2 Mango device
- Step 6: Install the package on the Gl.iNet mt300n-v2 Mango device
-- Step 1: Copy the package to the device using SSH access
    - Step 1: Copy the package to the device using SSH access
```
```
scp ./bin/packages/mipsel_24kc/base/its_bridge_0.0.1-1_mipsel_24kc.ipk root@192.168.8.1:/root
scp ./bin/packages/mipsel_24kc/base/its_bridge_0.0.1-1_mipsel_24kc.ipk root@192.168.8.1:/root
```
```
-- Step 2: Execute the following commands to install the package
    - Step 2: Execute the following commands to install the package
```
```
ssh root@192.168.8.1
ssh root@192.168.8.1
opkg install its_bridge_0.0.1-1_mipsel_24kc.ipk
opkg install its_bridge_0.0.1-1_mipsel_24kc.ipk
```
```


### Deployment on Linux box device (e.g. NanoPI R2S)
### Deployment on Linux box device (e.g. NanoPI R2S)
See script/install.sh for a complete installation:
- Step 1: Downlod the following script in your home directory
```
wget https://forge.etsi.org/rep/plugtests/its-plugtests/its-bridge/blob/master/scripts/install.sh
```
- Step 2: execute it, using the following command line, where:
    - fscom, is your login name
    - yann.garcia@fscom.fr, your company email address used to register to the client-2site ETSI VPN
    - 123456, the password assigned to you when you registered to the client-2site ETSI VPN
```
```
cd scripts
sudo HOME_BIN=$HOME_BIN HOME_LIB=$HOME_LIB HOME_INC=$HOME_INC ./install.sh fscom yann.garcia@fscom.fr 123456
sudo HOME_BIN=$HOME_BIN HOME_LIB=$HOME_LIB HOME_INC=$HOME_INC ./install.sh fscom yann.garcia@fscom.fr 123456
```
```