web icon indicating copy to clipboard operation
web copied to clipboard

Can't configure static IP config

Open micheljung opened this issue 2 years ago • 4 comments

If you try this: image

It silently fails like this: image 'invalid uint 32: string' (for search purposes)

Because of this:

/**
 * @generated from message meshtastic.Config.NetworkConfig.IpV4Config
 */
export declare class Config_NetworkConfig_IpV4Config extends Message<Config_NetworkConfig_IpV4Config> {
  /**
   *
   * Static IP address
   *
   * @generated from field: fixed32 ip = 1;
   */
  ip: number;

  /**
   *
   * Static gateway address
   *
   * @generated from field: fixed32 gateway = 2;
   */
  gateway: number;

  /**
   *
   * Static subnet mask
   *
   * @generated from field: fixed32 subnet = 3;
   */
  subnet: number;

  /**
   *
   * Static DNS server address
   *
   * @generated from field: fixed32 dns = 4;
   */
  dns: number;

micheljung avatar Jun 05 '23 16:06 micheljung

Seeing the same issue, unable to configure static ip settings under network. Hitting save does nothing.

aptonline avatar Feb 12 '24 18:02 aptonline

I've seen other posts saying you have to enter static details in reverse for this to work (1.1.168.192 for example) . Not tested but will be trying it.

aptonline avatar Feb 13 '24 16:02 aptonline

That doesn't work for me, still not able to say settings for network (static IP etc) from WebUI. updated to latest beta firmware and same issue.

aptonline avatar Feb 16 '24 15:02 aptonline

Managed to set static IP via Android app but noticed that the IP details are encoded, is this correct? See below.

Screenshot from 2024-02-18 19-16-14

aptonline avatar Feb 18 '24 19:02 aptonline

@Hunter275 this was fixed in #269.

KomelT avatar Sep 17 '24 19:09 KomelT