Hello.
How can I configure Warp client interface ip address?
Unfortunately, I have a device in my private network that is assigned the same IP as the warp default interface ip (172.16.0.2/32), and I would like to avoid changing that IP if possible.
The interface config seems to be dumped into /var/lib/cloudflare-warp/conf.json
, so I think it might be configurable from some I/F. But I could not find the such a I/F from the documentation.
$ cat /var/lib/cloudflare-warp/conf.json | jq .interface
{
"v4": "172.16.0.2",
"v6": "2606:4700:110:8fd3:a39d:9567:4e15:71e6"
}
I deployed warp-client on ubuntu with mdm configuration, but there seems to be no parameters regarding the interface.
https://developers.cloudflare.com/cloudflare-one/connections/connect-devices/warp/deployment/mdm-deployment/parameters/
$ warp-cli --version
warp-cli 2022.10.116
$ cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04.2 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.2 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal
Thanks.