## dns的配置字段
$ttl 1d 生存期,單位[w|d|h|m] 周 天 時 分 預設為秒
"@ in soa @ root.groupon.cn. ( 正向解析檔案(/var/named/named.groupon.cn )
2010110901 serial
28800 refresh
14400 retry
3600000 expire
86400 minumum ttl
} in ns @ 直接輸入網域名稱,訪問@
in ns ns.linuxde.net 定義name server.
in a 221.123.177.226 "直接輸入網域名稱(www),解析到的外網ip
name server的內部ip"
in mx 10 ns.linuxde.net. 定義mail exchanger
ns in a 192.168.0.17 定義ip位址和主機名
store in a 192.168.60.42 輸入子網域名稱,解析到的內網ip
img in a 192.168.60.43
$ttl 1d 建立反向解析檔案:/var/named/named.192.168.60
"@ in soa 60.168.192.in-addr.arpa. root.groupon.cn. (
2010110901
28800
14400
3600000
86400
) "@ in ns www.groupon.cn.
42 in ptr store.groupon.cn. 192.168.60.42 -> store
43 in ptr img.groupon.cn. 192.168.60.43 -> img
## 檢測配置正確性
/usr/sbin/named-checkconf -z 配置完成,檢查配置檔案的正確性
service named start 啟動named服務
ipconfig /flushdns 客戶端dns指定本機,並強制重新整理該dns
nslookup
>groupon.cn
linux下採用dig校驗正確性:
dig @server.qianlong.com 檢視qianlong.com是否配置正確
dig @server.qianlong.com axfr 檢視zone資料傳輸
dig @server.qianlong.com ixfr=n 檢視zone資料的增量傳輸
dig -x 124.42.102.203 @server dig檢視反向解析
dig qianlong.com +nssearch 查詢乙個域的授權 dns 伺服器
dig qianlong.com +trace
shell學習之 shell呼叫shell
2008 05 06 14 43 18 分類 linux 標籤 字型大小 大中小訂閱 fork是最普通的,就是直接在指令碼裡面用 directory script.sh來呼叫script.sh這個指令碼.執行的時候開乙個sub shell執行呼叫的指令碼,sub shell執行的時候,parent ...
STL之配接器
adapter 將乙個class的介面轉換為另乙個class的介面。應用於仿函式,functor adapters,價值在於通過它們直接的繫結,組合,修飾能力,幾乎可以無限制地創造出各種可能的表示式。配接操作包括繫結 bind 否定 negate 組合 compose 以及對一般函式或成員函式的修飾...
Spring AOP 之AspectJ註解配置
spring aop 之aspectj註解配置 使用jdk 業務類package com.tgb.aop public inte ce usermanager package com.tgb.aop public class usermanagerimpl implements usermanage...