1
public/ipfire/ipfire_ipalias_green.md

25 lines
852 B
Markdown
Raw Normal View History

2023-07-21 22:59:40 +02:00
# Howto add a IP alias on the "green" interface in IPfire
2023-07-21 22:51:44 +02:00
2023-07-21 23:00:44 +02:00
Let's say you have an internal /24 network and you want to add a secondary (local) IP address (this could be useful in case you remove an old machine from the network and your new firewall is on a different address - but your new firewall should offer on of it's services on the old address).
2023-07-21 22:51:44 +02:00
In the ipfire GUI this is not possible. But you can use the file "rc.local" (which is executed while the firewall boots).
2023-07-21 22:59:40 +02:00
## 1.) Add the following lines to the file /etc/sysconfig/rc.local:
2023-07-21 22:51:44 +02:00
2023-07-21 22:59:40 +02:00
```bash
2023-07-21 22:51:44 +02:00
ip addr add 192.168.89.1/24 dev green0
ip addr show green0
2023-07-21 22:59:40 +02:00
```
2023-07-21 22:51:44 +02:00
2023-07-21 22:59:40 +02:00
## 2.) Make it executable:
2023-07-21 22:51:44 +02:00
2023-07-21 22:59:40 +02:00
```bash
2023-07-21 22:51:44 +02:00
chmod 0755 /etc/sysconfig/rc.local
2023-07-21 22:59:40 +02:00
```
2023-07-21 22:51:44 +02:00
2023-07-21 22:59:40 +02:00
## 3.) Reboot your firewall or execute the script manually
2023-07-21 22:51:44 +02:00
READY.
The new ip address will be automatically configured every time the firewall reboots.