You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have found that you haven't the time to update the IPFire from 2.25 to 2.29. I have done this thing. Below is the boot command for internet router and company router:
after update IPFire, I think add manual dns server is recommend for stable dns lookup, so I add two dns server to internet router using ansible role named post_unbound (directory is ansible/roles/post_unbound/tasks/main.yml) as below:
---
- name: Add 8.8.8.8 to the DNS servers file
lineinfile:
path: /var/ipfire/dns/servers
line: "3,8.8.8.8,,enabled,"
create: yes
state: present
- name: Add 114.114.114.114 to the DNS servers file
lineinfile:
path: /var/ipfire/dns/servers
line: "4,114.114.114.114,,enabled,"
create: yes
state: present
- name: Restart unbound service
service:
name: unbound
state: restarted
and then add this role to internet router as below:
Hi, thanks for your issue.
There are currently some fixes waiting to be merged in #94 , we'll test and implement your suggestions after these have been moved into main.
Dear Author:
I have found that you haven't the time to update the IPFire from 2.25 to 2.29. I have done this thing. Below is the boot command for internet router and company router:
iso_urls and iso_checksum:
boot command for internet router:
boot command for company router:
after update IPFire, I think add manual dns server is recommend for stable dns lookup, so I add two dns server to internet router using ansible role named post_unbound (directory is ansible/roles/post_unbound/tasks/main.yml) as below:
and then add this role to internet router as below:
--- - hosts: internetrouter become: yes gather_facts: true roles: - configure_internet_router - rsyslog_install_ipfire - rsyslog_ISO8601 - post_unbound
then unbound service in internet router can running stably!
The text was updated successfully, but these errors were encountered: