Updated help

This commit is contained in:
Martin Ger
2018-04-20 10:15:28 +02:00
parent a9c24f6285
commit b7bfcc8740
6 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
# esp_wifi_repeater
A full functional WiFi repeater (correctly: a WiFi NAT router)
This is an implementation of a WiFi NAT router on the esp8266 and esp8285. It also includes support a packet filtering firewall with ACLs, port mapping, traffic shaping, hooks for remote monitoring (or packet sniffing), an MQTT management interface, and power management. For a setup with multiple routers in a mesh to cover a larger area a new mode "Automesh" has been included https://github.com/martin-ger/esp_wifi_repeater#automesh-mode .
This is an implementation of a WiFi NAT router on the esp8266 and esp8285. It also includes support for a packet filtering firewall with ACLs, port mapping, traffic shaping, hooks for remote monitoring (or packet sniffing), an MQTT management interface, and power management. For a setup with multiple routers in a mesh to cover a larger area a new mode "Automesh" has been included https://github.com/martin-ger/esp_wifi_repeater#automesh-mode .
Typical usage scenarios include:
- Simple range extender for an existing WiFi network
Binary file not shown.
Binary file not shown.
+2 -2
View File
@@ -1,2 +1,2 @@
930cfa413ee341d66855ffc964179b5aed3f56b2 0x00000.bin
26f55714b430ecc20b785ba533eca58be34e3901 0x10000.bin
75345d3f3e2f29450d97f3b928d0a4a8fe1d3a10 0x00000.bin
86ab4a14959f39cb62e61f8e813cb4ddf0dddbb2 0x10000.bin
+1 -1
View File
@@ -18,7 +18,7 @@
//
// Size of the console buffers
//
#define MAX_CON_SEND_SIZE 1200
#define MAX_CON_SEND_SIZE 1300
#define MAX_CON_CMD_SIZE 80
//
+1 -1
View File
@@ -841,7 +841,7 @@ void ICACHE_FLASH_ATTR console_handle_command(struct espconn *pespconn)
os_sprintf_flash(response, "route clear|route add <network> <gw>|route delete <network>\r\ninterface <int> [up|down]\r\nportmap [add|remove] [TCP|UDP] <ext_port> <int_addr> <int_port>\r\n");
to_console(response);
#ifdef ACLS
os_sprintf_flash(response, "acl [from_sta|to_sta|from_ap|to_ap] [IP|TCP|UDP] <src_addr> [<src_port>] <dest_addr> [<dest_port>] [allow|deny|allow_monitor|deny_monitor]\r\nacl [from_sta|to_sta|from_ap|to_ap] clear\r\n");
os_sprintf_flash(response, "show acl|acl [from_sta|to_sta|from_ap|to_ap] [IP|TCP|UDP] <src_addr> [<src_port>] <dest_addr> [<dest_port>] [allow|deny|allow_monitor|deny_monitor]\r\nacl [from_sta|to_sta|from_ap|to_ap] clear\r\n");
to_console(response);
#endif
#ifdef DAILY_LIMIT