此项Achieve the dynamic IP domain name automatic pointing under Linux(在linux下实现动态IP的域名自动指向)

域名指向  时间:2021-02-21  阅读:()

Achieve the dynamic IP domain name automatic pointing under

Linux 在linux下实现动态IP的域名自动指向

China Linux Forum Forum | reviews | cangjingge | CMPP | planMirror plan | online survey software | | warehouse on the |China Linux Forum - article meta

The home page | classified articles | meta search articles |my article | online users

Article meta

The latest article read this topic: 1704

On the last topic, read all the topics, index the next topic,next to the flat pattern tree model, and read the tree modelone by one

Add to favorites | print

Article title in Linux, dynamic IP domain name automaticallypoint to by Gan Jiehan

Respond to the commentary in this article

Posted: David. system (webmaster)

Posted date 09/04/02 12:26 PM

Gan Jiehan, 100 Wenfeng Road, Guangxi, Qinzhou

On the Internet, the user' s domain name and IP address areone-to-one correspondence. But the virtual dial-up access tothe Internet, resulting in a dynamic IP address. This has causedtrouble for computer enthusiasts who don' t have much money toapply for domain names. The previous period, due to the authorof the region' s ADSL instead of virtual dial-up, the troublealso troubled the author for a while. After many debugging,finally realized the dynamic IP address domain name automaticpointing under Linux. Now we will record it and share it withyou:

Before thehttp://www.deerf ield.com/download/dns2go/linux/index.htm isa server for a free domain name, put the dns2go in the/etc/rc.d/rc. local, the boot fixed free domain name. But ADSLto virtual dial-up way, there is no fixed IP address, startdns2go is very troublesome, first use the ifconfig command tofind the ppp0 IP, and thenmodify the IP under/etc/dns2go. conf,and then can start dns2go. It' s inconvenient to use manualoperation every time. It can not be started automaticallywithout anyone' s intervention. Write a C program to solve theproblem, in cases of all procedures are assumed installed inthe /usr/local/bin/, a program written in shell to call the Cprogram, the directory containing xnbh (shell program) , trans(Executive C program compiled) , outfile (intermediatetemporary files) , pppoe.txt (intermediate) , dns2go. conf(typical the configuration file)

The shell program for xnbh is as follows:

Adsl-start# starts the virtual dialer for adls,

The ifconfig ppp0 |grep -v "Link" >/usr/local/bin/pppoe.txt#produces the pppoe. txt file in the directory

The /usr/local/bin/trans# invokes the C program to extract theIP value in the file pppoe.txt, and then replaces the IP valuein the dns2go.conf to produce the intermediate file outfileCP/etc/dns2go. conf/etc/dns2go.confold#backup the originaldns2go. conf file

CP /usr/local/bin/outfile /etc/dns2go. conf # after replacingthe dns2go.conf file

Nohup /usr/local/bin/dns2go >/var/tmp/dns2go. log 2>&1 &#start fixed domain

After executing the second sentence in xnbh, the followingpppoe.txt is generated:

INET addr:218.65.217. 109 P-t-P: 172.0.0. 1

Mask:255.255.255.255

UP, POI NTOPOI NT, RUNNING, NOARP, MULT I CAS T, MTU: 1492, Met r i c: 1RX, packet s:26, errors:0, dropped:0, overruns:0, frame:0TX, packets:27, errors:0, dropped:0, overruns:0, carrier:0Collisions:0 txqueuelen:3

RX bytes:1400 (1.3 Kb) TX bytes:1358 (1.3 Kb)The trans. c program is as follows:

#include <stdio.h>

#include <ctype.h>

(ma i n)

{

F ILE, *fp, *bp, *out;

Int i=0;

Int j;char ip [16] ;char dip [16] ;char na [] = "address =";char inip [24] ;char readln [255] ;char readlnn [255] ;

fp = fopen ("/ usr / local / bin / pppoe.txt", "r") ;if (fgets (readln, 255, fp) ! = = null)

{ (i = 0; i < 16; i + +) ip = readln [20 + in] ;}in = 0;for (i = 0; i < 16; i + +)

{if (ip! = ' ' )

{dip = ip; printf ("ip% d =% c% n" in, ip) ; }else {j = i; printf ("j =% d", j) ; } }for (i = 0; i < = j; i + +) dip = ip;dip [j] = '\ 0' ;printf ("a =% s \ n", dip) ;f c l o s e (fp) ;strcpy (inip, na) ;printf ("inip =% s \ n", inip) ;strcat (inip, dip) ;

printf ("inip =% s \ n", inip) ;fp = fopen ("/ usr / local / bin / dns2go. conf", "r") ;out = fopen ("/ usr / local / outfile", "w") ;while ( ! feof (fp)) {if (fgets (readlnn, 255, fp) ! = = null)i f (strncmp ("addres s = aaa.bbb.ccc.ddd", readlnn, 15)) fputs(readlnn, out) ;else fputs (inip, out) ; }f c l o s e (fp) ;fclose (out) ;

}

在linux下用gcc –o trans trans.c编译通过产生文件trans,dns2go. conf的配vchgob #:

#

# simple configuration file for dns2go linux client

#

# for more information refer to the dns2go.conf manual page#

# global directives

#

# dns2go serverserver = discovery.dns2go.com

# key (required, case sensitive)key = aaaaaa - bbbbbb - ccccccc - ddddd (此项为申请的激活码)# log file (optional, default: syslog)

# log = / var / log / dns2go.txt

# send debug outputs two stdoutdebug

# number of connection attempts (optional, default: 8)# retries = 8

# rate two send heartbeats (in minutes) (optional, default: 0= automati c)

# heartbeat rate = 0

#

# domain directives

#

# fully qualified domain name (required)doma in = xxxxx.dnsgo.com (此项填写固定免费域名)

# static ip address (optional, default: external ip address)address = aaa.bbb.ccc.ddd (此项为假设ip)

# online www alias redirection: choose one of the following:# (optional, default: www. alias resolves two domain ip)# www redirect - url = http: / /. . .

# www redirect gate = 8080

# offline redirect option: choose one of the following# (optional, default: offline status page)

# offline - url = http: / /. . .

# offline - ip = 0.0.0.0

以上xnbh程序若加入/ etc / rc.d / rc. local /中则可以启动时自动启动固定免费域名,

此时你可以启动的apache, ftp, telnet等都可以用此免费域名了,出门在外的朋友可以

很方便找到自己的服务器,熟悉shell的朋友也可以用shell完成c程序的功能, 以上的

程序在redhat7.2上顺利通过.david

Article options: print, put this article in the memorandum, andwhen you have time to reply to friends, share the notificationmoderator

The title of Re: Linux under dynamic IP domain name to by [re:David. ] automatic Gansu Johanna

Respond to the commentary in this article

Posted by: zjohnc (journeyman)

Posting date 09/04/02 04:41 PM

In/etc/ppp/ip-up and/etc/ppp/ip-down Riga, dns2go and dns2go-k, you can automatically follow the new. I have used for morethan 2 months, basically no problem, sometimes can not update,

pacificrack7月美国便宜支持win VPS,$19.99/年,2G内存/1核/50gSSD/1T流量

pacificrack发布了7月最新vps优惠,新款促销便宜vps采用的是魔方管理,也就是PR-M系列。提一下有意思的是这次支持Windows server 2003、2008R2、2012R2、2016、2019、Windows 7、Windows 10,当然啦,常规Linux系统是必不可少的!1Gbps带宽、KVM虚拟、纯SSD raid10、自家QN机房洛杉矶数据中心...支持PayPal、...

ZJI:香港物理服务器,2*E5-2630L/32G/480G SSD/30Mbps/2IP/香港BGP,月付520元

zji怎么样?zji是一家老牌国人主机商家,公司开办在香港,这个平台主要销售独立服务器业务,和hostkvm是同一样,两个平台销售的产品类别不一平,商家的技术非常不错,机器非常稳定。昨天收到商家的优惠推送,目前针对香港邦联四型推出了65折优惠BGP线路服务器,性价比非常不错,有需要香港独立服务器的朋友可以入手,非常适合做站。zji优惠码:月付/年付优惠码:zji 物理服务器/VDS/虚拟主机空间订...

RackNerd:美国便宜VPS,洛杉矶DC-02/纽约/芝加哥机房,4TB月流量套餐16.55美元/年

racknerd怎么样?racknerd美国便宜vps又开启促销模式了,机房优秀,有洛杉矶DC-02、纽约、芝加哥机房可选,最低配置4TB月流量套餐16.55美元/年,此外商家之前推出的最便宜的9.49美元/年套餐也补货上架,同时RackNerd美国AMD VPS套餐最低才14.18美元/年,是全网最便宜的AMD VPS套餐!RackNerd主要经营美国圣何塞、洛杉矶、达拉斯、芝加哥、亚特兰大、新...

域名指向为你推荐
fontfamily小程序font-family有哪些51自学网站谁能给我免费学习的网站吧 谢谢了缓冲区溢出教程适合黑客初级学者使用的黑客工具有那些 、显卡温度多少正常显卡温度是多少才算正常的?铁路客服中心铁路客户服务中心怎么订票网站地图制作网站地图怎么做购买流量买流量怎么买熊猫直播频道熊猫TV直播平台主播有哪些网站备案注销网站关闭,如何注销备案winmgmt"wmiprvse.exe"是干吗用的?
vps是什么 华为云服务 踢楼 轻博 商家促销 免费smtp服务器 毫秒英文 微信收钱 秒杀预告 gspeed 谁的qq空间最好看 域名和空间 100mbps 香港新世界中心 沈阳主机托管 starry 服务器论坛 实惠 hdsky 沈阳idc 更多