1. live.cn的伺服器在中國么
你點開始-運行-輸入cmd
然後輸入命令
ping www.live.cn
會返回一個IP地址
你進138.com查IP地址所在地不就可以了。。這是最好的解決方式。
2. linux下如何配置DNS伺服器,
在linux下配置DNS伺服器,下面是配置過程中設置過的一些文件,
/etc/hosts 文件的具體內容如下:
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost fc4
192.168.1.3 a.test.com a
192.168.1.1 b.test.cn b
/etc/host.conf 文件:
order hosts,bind
表示先用hosts文件做解析,在用DNS解析
/etc/resolv.conf 文件:
; generated by NetworkManager, do not edit!
search test.com
nameserver 127.0.0.1
search test.cn
nameserver 192.168.1.1
nameserver 61.144.56.100
/etc/named.conf 文件:
//
// named.conf for Red Hat caching-nameserver
//
options {
directory "/var/named";
mp-file "/var/named/data/cache_mp.db";
statistics-file "/var/named/data/named_stats.txt";
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};
//
// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};
zone "test.com"IN {
type master;
file "test.com";
allow-update { none; };
};
zone "1.168.192.in-addr.arpa"IN {
type master;
file "192.168.1.rev";
allow-update { none; };
};
zone "test.cn"IN {
type master;
file "test.cn";
allow-update { none; };
};
zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN {
type master;
file "named.ip6.local";
allow-update { none; };
};
zone "255.in-addr.arpa" IN {
type master;
file "named.broadcast";
allow-update { none; };
};
zone "0.in-addr.arpa" IN {
type master;
file "named.zero";
allow-update { none; };
};
include "/etc/rndc.key";
在/var/name/test.com 文件下:
$TTL 86400
@ IN SOA a.test.com. root.a.test.com (
42 ; serial (d. adams)
3H ; refresh
15M ; retry
1W ; expiry
1D ) ; minimum
IN NS a.test.com.
IN MX 10 mail.test.com.
a IN A 192.168.1.3
mail IN A 192.168.1.3
//其中root.a.test.com的含義是管理員的郵箱
/var/name/test.cn 文件下:
$TTL 86400
@ IN SOA b.test.cn. root.a.test.com (
42 ; serial (d. adams)
3H ; refresh
15M ; retry
1W ; expiry
1D ) ; minimum
IN NS b.test.cn.
IN MX 10 mail.test.cn.
b IN A 192.168.1.1
mail IN A 192.168.1.1
/var/name/192.168.1.rev 文件下:
$TTL 86400
@ IN SOA 1.168.192.in-addr.arpa. root.test.com. (
1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
IN NS a.test.com.
IN NS b.test.cn.
IN MX 10 mail.test.com.
IN MX 10 mail.test.cn.
3 IN PTR a.test.com.
3 IN PTR mail.test.com.
1 IN PTR b.test.cn.
1 IN PTR mail.test.cn.
然後用/etc/init.d/named restart重啟DNS服務,在重啟過程中,我曾經出現過好幾次的錯誤,按照出錯的提示,會提示是named.conf文件第幾行出錯的。或者提示在那些包含文件例如test.cn這些文件裡面的問題,然後一個一個排除。
最後還有一些nslookup的命令比較有用:
set all用於顯示使用nslookup工具這台機器上的DNS伺服器的一些信息
set type=any會顯示完整信息包括域中郵件伺服器和主從DNS伺服器的名字和IP地址
server 192.168.0.1更換查詢的DNS伺服器地址
3. 我怎麼樣才能知道自己郵箱的埠號
知道自己郵箱的埠號的方法:
1、進入郵箱
2、找到「幫助中心」搜索「什麼是pop3」
3、點擊文章進去即可找到
4、部分常見郵箱埠號及伺服器地址:
sina.com:
POP3伺服器地址:pop3.sina.com.cn(埠:110)
SMTP伺服器地址:smtp.sina.com.cn(埠:25)
sohu.com:
POP3伺服器地址:pop3.sohu.com(埠:110)
SMTP伺服器地址:smtp.sohu.com(埠:25)
126郵箱:
POP3伺服器地址:pop.126.com(埠:110)
SMTP伺服器地址:smtp.126.com(埠:25)
139郵箱:
POP3伺服器地址:POP.139.com(埠:110)
SMTP伺服器地址:SMTP.139.com(埠:25)
163.com:
POP3伺服器地址:pop.163.com(埠:110)
SMTP伺服器地址:smtp.163.com(埠:25)
QQ郵箱
POP3伺服器地址:pop.qq.com(埠:110)
SMTP伺服器地址:smtp.qq.com(埠:25)
QQ企業郵箱
POP3伺服器地址:pop.exmail.qq.com(SSL啟用 埠:995)
SMTP伺服器地址:smtp.exmail.qq.com(SSL啟用 埠:587/465)
HotMail
POP3伺服器地址:pop3.live.com(埠:995)
SMTP伺服器地址:smtp.live.com(埠:587)
gmail(google.com)
POP3伺服器地址:pop.gmail.com(SSL啟用埠:995)
SMTP伺服器地址:smtp.gmail.com(SSL啟用埠:587)
21cn.com:
POP3伺服器地址:pop.21cn.com(埠:110)
SMTP伺服器地址:smtp.21cn.com(埠:25)
Foxmail:
POP3伺服器地址:POP.foxmail.com(埠:110)
SMTP伺服器地址:SMTP.foxmail.com(埠:25)
china.com:
POP3伺服器地址:pop.china.com(埠:110)
SMTP伺服器地址:smtp.china.com(埠:25)
4. 常用郵件伺服器名(POP3,SMTP地址)
SMTP伺服器地址,實際上就是代收發伺服器地址,是由郵箱服務商提供的。
常用SMTP地址
1、QQ郵箱(mail.qq.com)
POP3伺服器地址:pop.qq.com(埠:110)
SMTP伺服器地址:smtp.qq.com(埠:25)
2、搜狐郵箱(sohu.com):
POP3伺服器地址:pop3.sohu.com(埠:110)
SMTP伺服器地址:smtp.sohu.com(埠:25)
3、HotMail郵箱(hotmail.com):
POP3伺服器地址:pop.live.com(埠:995)
SMTP伺服器地址:smtp.live.com(埠:587)
4、移動139郵箱:
POP3伺服器地址:POP.139.com(埠:110)
SMTP伺服器地址:SMTP.139.com(埠:25)
5、景安網路郵箱:
POP3伺服器地址:POP.zzidc.com(埠:110)
SMTP伺服器地址:SMTP.zzidc.com(埠:25)
5. gmail的郵件傳輸伺服器和接收伺服器是什麼
Gmail接收和傳輸有兩種方式:
第一種(需要埠號):
pop.gmail.com,埠:995。
smtp.gmail.com,埠:465。
兩項必須選上此伺服器需要安全連接(ssl)。
第二種(此種方法不需要埠號):
接收郵件伺服器 (POP3): pop.gmail.com
發送郵件伺服器 (SMTP): smtp.gmail.com
擴展鍵燃資料:
一般地 郵箱 POP3 伺服器(埠110) SMTP 伺服器(埠25)
1、微軟郵件系統的設定參數如下:
接收郵件伺服器 (POP3):pop3.live.com 埠: 995 要求安全連接 (SSL)
發送郵件伺服器 (SMTP):smtp.live.com 埠:587或25 要求安全連接 (SSL)
2、163免費郵箱的郵件伺服器地址
接收郵件伺服器: pop.163.com。
發送郵件伺服器(SMTP): smtp.163.com
3、126免費郵箱的郵件伺服器地址
POP伺服器地址: pop: pop.126.com
SMTP伺服器地址:smtp: smtp.126.com
4、網易@yeah.net郵箱:
pop.yeah.net; smtp.yeah.net
5、sina免費郵箱的郵件伺服器地址為:
接收郵件服喊察務器地址(POP3):pop.sina.com.cn 或:pop3.sina.com.cn
發送郵件稿滲虛伺服器地址(SMTP):smtp.sina.com.cn
6. 請問各位大神如何將ipad配置windows live郵箱特別是收發件主機地址怎麼填,謝謝各位的幫助~
1.選擇pop伺服器
2.發件伺服器:pop3.live.com
郵箱地址:(****@live.cn)
3.收件伺服器:smtp.live.com
郵箱地址:同上
設置密碼同郵箱密碼