examples.Example7 Maven / Gradle / Ivy
package examples;
import java.util.List;
import java.util.Map;
import me.legrange.mikrotik.MikrotikApiException;
/**
* Example 7: Dump your complete config
*
* @author gideon
*/
public class Example7 extends Example {
public static void main(String... args) throws Exception {
Example7 ex = new Example7();
ex.connect();
ex.test();
ex.disconnect();
}
private void test() throws MikrotikApiException, InterruptedException {
con.execute("/export file=conf");
List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy