Added non-default port example
This commit is contained in:
parent
84a7f89e83
commit
e3ad927ab3
|
|
@ -25,13 +25,17 @@ con.login("admin","password"); // log in to router
|
||||||
con.execute("/system/reboot"); // execute a command
|
con.execute("/system/reboot"); // execute a command
|
||||||
con.disconnect(); // disconnect from router
|
con.disconnect(); // disconnect from router
|
||||||
```
|
```
|
||||||
|
If your router does not use the default API port, the port can be specified when connecting:
|
||||||
|
|
||||||
|
```java
|
||||||
|
ApiConnection con = ApiConnection.connect("10.0.1.1", 1337); // connect to router on port 1337
|
||||||
|
```
|
||||||
|
|
||||||
To open an encrypted (TLS) connection is as simple, assuming the default API-SSL port is used:
|
To open an encrypted (TLS) connection is as simple, assuming the default API-SSL port is used:
|
||||||
|
|
||||||
```java
|
```java
|
||||||
ApiConnection con = ApiConnection.connectTLS("10.0.1.1"); // connect to router
|
ApiConnection con = ApiConnection.connectTLS("10.0.1.1"); // connect to router
|
||||||
con.login("admin","password"); // log in to router
|
con.login("admin","password"); // log in to router
|
||||||
con.disconnect(); // disconnect from router
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Currently only anonymous TLS is supported, not certificates.
|
Currently only anonymous TLS is supported, not certificates.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue