-->
Page 1 of 2

change ip address

PostPosted: Thu May 21, 2015 2:16 am
by Alessandro Collina
Hi
I'm using the esp8266 like a wifi-uart bridge.
I found this project that I'm using like model.

https://github.com/beckdac/ESP8266-transparent-bridge

Now, I want to change the ip address (default 192.168.4.1) to 192.168.1.1 but I don't know like I can do it.

Can you help me?
Thanks
Sandro

Re: change ip address

PostPosted: Tue May 26, 2015 6:16 am
by Alex P
SDK 1.0.0 (and I assume all subsequent versions) have a function for changing softAP IP. I have no idea in what source file it can be found (I found a reference to it in the Arduino-esp8266 ESP8266WiFi.cpp), but here is how it is used:

Code: Select allstruct ip_info info;

info.ip.addr = static_cast<uint32_t>(local_ip);
info.gw.addr = static_cast<uint32_t>(gateway);
info.netmask.addr = static_cast<uint32_t>(subnet);

wifi_softap_dhcps_stop();
wifi_set_ip_info(SOFTAP_IF, &info);
wifi_softap_dhcps_start();


The key here is wifi_set_ip_info(SOFTAP_IF, &info). It seems to work for me without any problems, although I've read somewhere (possibly the SDK) that it only executes if in user_init() :?

Re: change ip address

PostPosted: Tue May 26, 2015 8:05 am
by Alessandro Collina
Thank you very much Alex.

I had to make a few tweaks to make it works on my app. I post it so can be useful to someone


#define SOFTAP_IF 0x01
struct ip_info ipinfo;
if(wifi_get_ip_info(SOFTAP_IF, &ipinfo))
{
IP4_ADDR(&ipinfo.ip, 192, 168, 1, 1);
IP4_ADDR(&ipinfo.gw, 192, 168, 1, 1);
IP4_ADDR(&ipinfo.netmask, 255, 255, 255, 0);
if(!wifi_set_ip_info(SOFTAP_IF, &ipinfo))
{
#ifdef CTRL_LOGGING
os_printf("CTRL not set IP config!\r\n");
#endif
} else {
#ifdef CTRL_LOGGING
os_printf("CONFIGURATION WEB SERVER IP: " IPSTR "\r\n", IP2STR(&ipinfo.ip));
#endif
}
}
wifi_softap_dhcps_start();

Re: change ip address

PostPosted: Sat Oct 27, 2018 11:15 pm
by josephchrzempiec
Hello i know this is a old post But i have the esp8266mod can someone tell me if it is possible to change that address the 192.168.4.1 to something else and where to find i can change it at?