Article 6M21Q After installing Dnsmasq, the domain name is not pinged

After installing Dnsmasq, the domain name is not pinged

by
Jason.nix
from LinuxQuestions.org on (#6M21Q)
Hello,
I used the article https://www.howtoforge.com/how-to-se...-on-debian-12/ to configure an internal DNS server. My server has two network cards as follows:
Code:# ifconfig
enp0s3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.0.2.15 netmask 255.255.255.0 broadcast 10.0.2.255
inet6 fe80::a00:27ff:fe7b:8f51 prefixlen 64 scopeid 0x20<link>
ether 08:00:27:7b:8f:51 txqueuelen 1000 (Ethernet)
RX packets 39840 bytes 44840112 (42.7 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 23678 bytes 2087208 (1.9 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

enp0s8: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.20 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::a00:27ff:febe:5df0 prefixlen 64 scopeid 0x20<link>
ether 08:00:27:be:5d:f0 txqueuelen 1000 (Ethernet)
RX packets 495 bytes 42060 (41.0 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 250 bytes 18000 (17.5 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 91 bytes 6693 (6.5 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 91 bytes 6693 (6.5 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0After installing Dnsmasq, I can only ping the IP address:
Code:# ping google.com
^C
# ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
64 bytes from 8.8.8.8: icmp_seq=1 ttl=63 time=36.9 ms
64 bytes from 8.8.8.8: icmp_seq=2 ttl=63 time=36.7 ms
64 bytes from 8.8.8.8: icmp_seq=3 ttl=63 time=29.4 ms
^C
--- 8.8.8.8 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2003ms
rtt min/avg/max/mdev = 29.374/34.311/36.857/3.491 msIn my Dnsmasq configuration I used the enp0s8 network card. The IP forwarding is also active:
Code:# sysctl -p
net.ipv4.ip_forward = 1I also used the following iptables rule:
Code:# iptables -t nat -A POSTROUTING -o enp0s3 -j MASQUERADE
# iptables-saveWhat is wrong?

Thank you.
External Content
Source RSS or Atom Feed
Feed Location https://feeds.feedburner.com/linuxquestions/latest
Feed Title LinuxQuestions.org
Feed Link https://www.linuxquestions.org/questions/
Reply 0 comments