forked from firewalld/firewalld
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improvement(service): LLMNR: split into llmnr-tcp and llmnr-udp
TCP implementation cannot work with destination addresses.
- Loading branch information
Showing
5 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<service> | ||
<short>LLMNR (TCP)</short> | ||
<description>Link-Local Multicast Name Resolution (LLMNR) allows both IPv4 and IPv6 hosts to perform name resolution for hosts on the same local link.</description> | ||
<port protocol="tcp" port="5355"/> | ||
</service> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<service> | ||
<short>LLMNR (UDP)</short> | ||
<description>Link-Local Multicast Name Resolution (LLMNR) allows both IPv4 and IPv6 hosts to perform name resolution for hosts on the same local link.</description> | ||
<port protocol="udp" port="5355"/> | ||
<destination ipv4="224.0.0.252" ipv6="ff02::1:3"/> | ||
</service> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<service> | ||
<short>Link-Local Multicast Name Resolution (LLMNR)</short> | ||
<description>LLMNR allows both IPv4 and IPv6 hosts to perform name resolution for hosts on the same local link.</description> | ||
<port protocol="tcp" port="5355"/> | ||
<port protocol="udp" port="5355"/> | ||
<destination ipv4="224.0.0.252" ipv6="ff02::1:3"/> | ||
<short>LLMNR</short> | ||
<description>Link-Local Multicast Name Resolution (LLMNR) allows both IPv4 and IPv6 hosts to perform name resolution for hosts on the same local link.</description> | ||
<include service="llmnr-tcp"/> | ||
<include service="llmnr-udp"/> | ||
</service> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters