목록2019/01 (56)
준호씨의 블로그
import PlaygroundSupport PlaygroundPage.current.needsIndefiniteExecution = true 참고 http://www.thomashanning.com/concurrent-code-in-playgrounds/
dig 커맨드 $ dig mx daum.net +short 10 mx3.hanmail.net. 10 mx4.hanmail.net. 10 mx1.hanmail.net. 10 mx2.hanmail.net. host 커맨드 $ host -t MX daum.net daum.net mail is handled by 10 mx3.hanmail.net. daum.net mail is handled by 10 mx1.hanmail.net. daum.net mail is handled by 10 mx4.hanmail.net. daum.net mail is handled by 10 mx2.hanmail.net. nslookup 커맨드 처음에 server 8.8.8.8 은 안넣어도 상관 없음. DNS 서버 지정하는 부분임...
1982년 RFC821 에서 메일 서버간 25번 포트를 인터넷 이메일 전송 채널의 기본 포트로 언급 했다. 그 이후로 지금도 메일 서버간 전송하는 기본포트로 25번 포트를 사용하고 있다. 1998년 RFC2476 에서 옛 방식은 25번 쓰고 새 정책과 보안을 적용하기 위해 587 포트를 쓰기로 하였다. SMTP TLS 바로 접속 해 보는 방법 $ openssl s_client -crlf -connect smtp.daum.net:465 IMAP TLS 바로 접속 해 보는 방법 $ openssl s_client -crlf -connect imap.daum.net:993 POP3 TLS 바로 접속 해 보는 방법 $ openssl s_client -crlf -connect pop.daum.net:995 참고 h..
도메인 관련 작업을 하다보면 dig 라는 커맨드를 사용하게 되는 경우가 많다. 그런데 종종 dig 커맨드가 설치 되어 있지 않은 경우가 있다. 그럴 때는 bind-utils 를 설치 해 주면 dig 커맨드도 같이 설치 된다. sudo yum install bind-utils