Last active
January 30, 2018 17:28
-
-
Save projumper/96b6ab6ba2b770f6f63d70460ac4b839 to your computer and use it in GitHub Desktop.
How to check the MX record in DNS btw How to check all DNS Settings
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 is only for me ! | |
Tools to use: | |
First tool to look up the MX entry is nslookup ;) | |
type in the shell: nslookup -querytype=MX zentralweb.de e.g. | |
answeris: | |
Non-authoritative answer: | |
zentralweb.de mail exchanger = 10 mail.zentralweb.de. | |
lets try some other options like A or CNAME | |
nslookup -querytype=A zentralweb.de | |
Non-authoritative answer: | |
Name: zentralweb.de | |
Address: 37.228.153.11 | |
nice! | |
Second tool to check SMTP. For this i use telnet. | |
try in the shell: telnet zentralweb.de 25 be surprised! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment