linux下ddns实现动态dns实现域名解析(转载备忘)
呵呵一直一来在WINDOWS下有花生壳等众多的DDNS软件实现动态域名解析。但都是在WINDOWS下的。
今天找到了一个金万维公司提供的免费DDNS服务。主要是提供有LINUX下的安装客户端
安装方法:得到金万维gnhostlinux动态域名Linux/Unix下客户端软件
wget http://www.gnway.com/download/gnhostlinux1.2.6.tgz
解压软件
tar zxvf gnhostlinux1.2.6.tgz
运行安装程序
[root@gnway root] ./install.sh
安装完之后
启动金万维动态域名Linux/Unix下客户端软件
/etc/rc.d/rc3.d/S99gnhostlinuxd start
第一此运行时 会让你输入帐户 和密码 你输入完 后 他会你的帐户和密码记在
/etc/gnhostlinux.conf
中
然后重启
/etc/rc.d/rc3.d/S99gnhostlinuxd restart
你的linux下ddns实现动态dns实现域名解析就完成了
如果你是在路由下上的网。你就要在路由上作个端口映射,在路由的虚拟服务器里。映射一个80端口到你的ip 就行了。
相信的看这个http://www.gnway.com/service_new/duankou.php
相关文档:
Linux 2.6下SPI设备模型
--------基于AT91RM9200分析
Atmel公司的ARM AT系列,其SPI驱动在kernel 2.6.23里已经包含。如果你打了at91-patch补丁的话,则在内核配置时要小心。在Device Drivers---- > Character devices ---- >取消选中SPI Driver(legacy) for at91rm9200 pro ......
Here is small script that does this. Debian or Ubuntu GNU/Linux does
not comes with any SYS V init script (located in /etc/init.d directory)
.
You create a script as follows and use it to stop or flush the iptables rules.
Please don't type rules at command prompt. Use the script to sp ......
3、线程标识
函数原型:
#include <pthread.h>
pthread_t pthread_self(void);
pid_t getpid(void);
getpid()用来取得目前进程的进程识别码,函数说明
例程8
程序目的:实现在新建立的线程中打印该线程的id和进 ......
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <net/if.h>
int sock_fd;
struct my_addr;
struct ifreq ifr;
unsigned char * addr;
#define ETH_INTERFACE_NAME "e ......
为了突出讲解的方便性,我把以前工作中珍藏的一些实验过程贡献给大家。(未经允许,请勿转载) 一.实验目的 1. 了解Linux操作系统的启动与登录方法 2. 掌握常用Red Hat Linux命令的使用方法,掌握图形用户界面下的基本操作 3. 了解Linux命令中参数选项的用法和作用 4. 熟悉操作系统的命令接口、图形 ......