My server IP is : 103.11.xx.xxx
I followed setting up my VPS from here
and, I had to copy and edit etc/bind/db.local to etc/bind/db.mywebsite:
; BIND data file for mywebsite.com
;
$ORIGIN mywebsite.com.
$TTL 604800
@ IN SOA ns1.mywebsite.com. myemail.mywebsite.com. (
2009120101 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
IN NS ns1.mywebsite.com.
IN NS ns2.mywebsite.com.
IN MX 10 mail.mywebsite.com.
localhost IN A 127.0.0.1
mywebsite.com. IN A 123.45.67.91
ns1 IN A 123.45.67.89
ns2 IN A 123.45.67.90
www IN A 123.45.67.91
ftp IN A 123.45.67.91
mail IN A 123.45.67.92
boards IN CNAME www
my questions is:
- how do i get IP 123.45.67.89, 123.45.67.90, 123.45.67.91 and 123.45.67.92. Which is part of the IP of my server IP (103.11.xx.xxx). how about another IPs, do i have to generate a new ip on the server? and what are the benefits of many ip like this?
- how about 1.168.192.in-addr.arpa if I used IP 103.11.xx.xxx?
- what is the meaning 'myemail' in ns1.mywebsite.com. myemail.mywebsite.com. whether the user like 'root' etc?
As a beginner, I very confused and many..many.. thank you in advance for your help..