我已经在godaddy上购买了vps计划,并且想配置我的域设置。 我按照这里提到的说明进行操作: https://www.youtube.com/watch?v=B4xNNyb5y7o 这不是我第一次这样做,但是在创建新帐户后,我得到了: This is a picture of the error I get when creating a new account
,当我尝试编辑dns区域时,得到以下信息: the error I get when editing the dns zone
; cPanel first:11.72.0.4 (update_time):1530021773 11.72.0.4: Cpanel::ZoneFile::VERSION:1.3 hostname:s132-148-245-18.secureserver.net latest:11.72.0.4
; Zone file for el7p.com
$TTL 14400
@ 86400 IN SOA ns1.secureserver.net. info.. ( near 'info..': empty label
2018062600 ; serial, todays date+todays
3600 ; refresh, seconds
7200 ; retry, seconds
1209600 ; expire, seconds
86400 ) ; minimum, seconds
el7p.com. 86400 IN NS ns1.secureserver.net.
el7p.com. 86400 IN NS ns2.secureserver.net.
el7p.com. IN A 132.148.245.18
el7p.com. IN MX 0 el7p.com.
mail IN CNAME el7p.com.
www IN CNAME el7p.com.
ftp IN A 132.148.245.18
el7p.com. IN TXT "v=spf1 +a +mx +ip4:10.193.90.225 ~all"
答案 0 :(得分:0)
您的区域文件中有错误。
@ 86400 IN SOA ns1.secureserver.net. info.. ( near 'info..': empty label
行包含“ info ...”一词,这就是引起您问题的原因。
应为: @ 86400 IN SOA ns1.secureserver.net. hostmaster.el7p.com. (
请注意,'('应该在下面几行的结尾处,并将所有TTL
的设置分组在一起。
hostmaster
部分应包含该域的有效电子邮件联系人(无@
)。