How do I change the IP to static in VitalPBX 4?
By default, our system’s IP address in Debian is obtained through DHCP, however, you can modify it and assign it a static IP address using the following steps:
- Edit the following file with nano, /etc/network/interfaces.
nano /etc/network/interfacesChange
#The primary network interface
allow-hotplug eth0iface eth0 inet dchpWith the following.
#The primary network interfaceallow-hotplug eth0iface eth0 inet staticaddress 192.168.1.200netmask 255.255.255.0gateway 192.168.1.1Save and Exit
- Enable the interface.
ifup eth0- It is recommended to restart the server.
rebootWas this article helpful?
Your feedback helps us improve the documentation.
Thank you for helping us improve!
