Hoogle Search
Within LTS Haskell 24.12 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
lookupAAAA :: Resolver -> Domain -> IO (Either DNSError [IPv6])dns Network.DNS.Lookup Look up all (IPv6) 'AAAA' records for the given hostname. Examples:
>>> rs <- makeResolvSeed defaultResolvConf >>> withResolver rs $ \resolver -> lookupAAAA resolver "www.wide.ad.jp" Right [2001:200:0:180c:20c:29ff:fec9:9d61]
lookupAAAAviaMX :: Resolver -> Domain -> IO (Either DNSError [IPv6])dns Network.DNS.Lookup Look up all 'MX' records for the given hostname, and then resolve their hostnames to IPv6 addresses by calling lookupAAAA. The priorities are not retained.
lookupAviaMX :: Resolver -> Domain -> IO (Either DNSError [IPv4])dns Network.DNS.Lookup Look up all 'MX' records for the given hostname, and then resolve their hostnames to IPv4 addresses by calling lookupA. The priorities are not retained. Examples:
>>> import Data.List (sort) >>> rs <- makeResolvSeed defaultResolvConf >>> ips <- withResolver rs $ \resolver -> lookupAviaMX resolver "wide.ad.jp" >>> fmap sort ips Right [203.178.136.30]
Since there is more than one result, it is necessary to sort the list in order to check for equality.lookupMX :: Resolver -> Domain -> IO (Either DNSError [(Domain, Int)])dns Network.DNS.Lookup Look up all 'MX' records for the given hostname. Two parts constitute an MX record: a hostname , and an integer priority. We therefore return each record as a (Domain, Int). In this first example, we look up the MX for the domain "example.com". It has an RFC7505 NULL MX (to prevent a deluge of spam from examples posted on the internet).
>>> rs <- makeResolvSeed defaultResolvConf >>> withResolver rs $ \resolver -> lookupMX resolver "example.com" Right [(".",0)]
The domain "mew.org" does however have a single MX:>>> rs2 <- makeResolvSeed defaultResolvConf >>> withResolver rs2 $ \resolver -> lookupMX resolver "mew.org" Right [("mail.mew.org.",10)]
Also note that all hostnames are returned with a trailing dot to indicate the DNS root. However the MX host itself has no need for an MX record, so its MX RRset is empty. But, "no results" is still a successful result.>>> rs3 <- makeResolvSeed defaultResolvConf >>> withResolver rs3 $ \resolver -> lookupMX resolver "mail.mew.org" Right []
lookupNS :: Resolver -> Domain -> IO (Either DNSError [Domain])dns Network.DNS.Lookup Look up all 'NS' records for the given hostname. The results are taken from the ANSWER section of the response (as opposed to AUTHORITY). For details, see e.g. http://www.zytrax.com/books/dns/ch15/. There will typically be more than one name server for a domain. It is therefore extra important to sort the results if you prefer them to be at all deterministic. Examples:
>>> import Data.List (sort) >>> rs <- makeResolvSeed defaultResolvConf >>> ns <- withResolver rs $ \resolver -> lookupNS resolver "mew.org" >>> fmap sort ns Right ["ns1.mew.org.","ns2.mew.org."]
lookupNSAuth :: Resolver -> Domain -> IO (Either DNSError [Domain])dns Network.DNS.Lookup Look up all 'NS' records for the given hostname. The results are taken from the AUTHORITY section of the response and not the usual ANSWER (use lookupNS for that). For details, see e.g. http://www.zytrax.com/books/dns/ch15/. There will typically be more than one name server for a domain. It is therefore extra important to sort the results if you prefer them to be at all deterministic. For an example, we can look up the nameservers for "example.com" from one of the root servers, a.gtld-servers.net, the IP address of which was found beforehand:
>>> import Data.List (sort) >>> let ri = RCHostName "192.5.6.30" -- a.gtld-servers.net >>> let rc = defaultResolvConf { resolvInfo = ri } >>> rs <- makeResolvSeed rc >>> ns <- withResolver rs $ \resolver -> lookupNSAuth resolver "example.com" >>> fmap sort ns Right ["a.iana-servers.net.","b.iana-servers.net."]
lookupPTR :: Resolver -> Domain -> IO (Either DNSError [Domain])dns Network.DNS.Lookup Look up all 'PTR' records for the given hostname. To perform a reverse lookup on an IP address, you must first reverse its octets and then append the suffix ".in-addr.arpa." We look up the PTR associated with the IP address 210.130.137.80, i.e., 80.137.130.210.in-addr.arpa:
>>> rs <- makeResolvSeed defaultResolvConf >>> withResolver rs $ \resolver -> lookupPTR resolver "180.2.232.202.in-addr.arpa" Right ["www.iij.ad.jp."]
The lookupRDNS function is more suited to this particular task.lookupRDNS :: Resolver -> Domain -> IO (Either DNSError [Domain])dns Network.DNS.Lookup Convenient wrapper around lookupPTR to perform a reverse lookup on a single IP address. We repeat the example from lookupPTR, except now we pass the IP address directly:
>>> rs <- makeResolvSeed defaultResolvConf >>> withResolver rs $ \resolver -> lookupRDNS resolver "202.232.2.180" Right ["www.iij.ad.jp."]
-
dns Network.DNS.Lookup Look up the 'SOA' record for the given domain. The result 7-tuple consists of the 'mname', 'rname', 'serial', 'refresh', 'retry', 'expire' and 'minimum' fields of the SOA record. An @ separator is used between the first and second labels of the 'rname' field. Since 'rname' is an email address, it often contains periods within its first label. Presently, the trailing period is not removed from the domain part of the 'rname', but this may change in the future. Users should be prepared to remove any trailing period before using the 'rname` as a contact email address.
>>> rs <- makeResolvSeed defaultResolvConf >>> soa <- withResolver rs $ \resolver -> lookupSOA resolver "mew.org" >>> map (\ (mn, rn, _, _, _, _, _) -> (mn, rn)) <$> soa Right [("ns1.mew.org.","[email protected].")]
lookupSRV :: Resolver -> Domain -> IO (Either DNSError [(Word16, Word16, Word16, Domain)])dns Network.DNS.Lookup Look up all 'SRV' records for the given hostname. SRV records consist (see https://tools.ietf.org/html/rfc2782) of the following four fields:
- Priority (lower is more-preferred)
- Weight (relative frequency with which to use this record amongst all results with the same priority)
- Port (the port on which the service is offered)
- Target (the hostname on which the service is offered)
>>> rs <- makeResolvSeed defaultResolvConf >>> withResolver rs $ \resolver -> lookupSRV resolver "_xmpp-server._tcp.jabber.ietf.org" Right [(5,0,5269,"_dc-srv.6661af51975d._xmpp-server._tcp.jabber.ietf.org.")]