苹果系统Mac OSX用花生壳phddns

苹果系统Mac OSX用花生壳phddns

刚刚修改了一下花生壳的文件,介绍给大家方法

1.

下载花生壳文件phddns-2.0.3.16858.tar.gz

这个文件是花生壳官方的linux版

重新编译OSX版

附件有编译好的phddns-2.0.3.16858-osx.tar.bz2

中有一个phddns文件夹可以有简单设定

2.

你的系统要有xcode喽

tar xzvf phddns-2.0.3.16858.tar.gz

cd phddns-2.0.3.16858

按官网的方法

不过这里一会要修改的

因为OSX的 net/if.h 中的 struct ifreq 结构有所不同

seazouMacBook:phddns-2.0.3.16858 qvb3d$ aclocal

seazouMacBook:phddns-2.0.3.16858 qvb3d$ autoconf

seazouMacBook:phddns-2.0.3.16858 qvb3d$ automake

seazouMacBook:phddns-2.0.3.16858 qvb3d$ ./configure

一大堆设定信息.....

seazouMacBook:phddns-2.0.3.16858 qvb3d$ make

编译时可能还会遇到 /bin/sh: config.status Makefile 

的错误

自己手工输信这行命令

/bin/sh config.status

就可以继续make

phruncall.c: In function ‘ShowNic’:

phruncall.c:551: error: ‘struct ifreq’ has no member named ‘ifr_hwaddr’

phruncall.c:551: error: ‘struct ifreq’ has no member named ‘ifr_hwaddr’

phruncall.c:551: error: ‘struct ifreq’ has no member named ‘ifr_hwaddr’

phruncall.c:551: error: ‘struct ifreq’ has no member named ‘ifr_hwaddr’

phruncall.c:551: error: ‘struct ifreq’ has no member named ‘ifr_hwaddr’

phruncall.c:551: error: ‘struct ifreq’ has no member named ‘ifr_hwaddr’

make[1]: *** [phruncall.o] Error 1

make: *** [all-recursive] Error 1

怎么办?

seazouMacBook:phddns-2.0.3.16858 qvb3d$ cd src

seazouMacBook:src qvb3d$ vi phruncall.c

(gg551) 快找到551行内容改

if (!(ioctl(fd, SIOCGIFADDR, (char *) &buf[interface]))) {

printf("[%s] = [IP:%s][MAC:%02x:%02x:%02x:%02x:%02x:%02x]\n",buf[interface].ifr_name,\

inet_ntoa(((struct sockaddr_in *)(&buf[interface].ifr_ifru.ifru_addr)) -> sin_addr),\

&buf[interface].ifr_ifru.ifru_addr.sa_data[0],\

&buf[interface].ifr_ifru.ifru_addr.sa_data[1],\

&buf[interface].ifr_ifru.ifru_addr.sa_data[2],\

&buf[interface].ifr_ifru.ifru_addr.sa_data[3],\

&buf[interface].ifr_ifru.ifru_addr.sa_data[4],\

&buf[interface].ifr_ifru.ifru_addr.sa_data[5]);

改ifr_addr为ifr_ifru.ifru_addr

改ifr_hwaddr为ifr_ifru.ifru_addr

cd ..

make

cd src

得到phddns

使用方法支官网上看吧

http://service.oray.com/question/116.html

以下不是原创是官网的引用:

*********************************************************************************************************************

一、安装说明(以CentOS 5为例)

1、安装必要的开发包

[root@localhost ~]# yum install gcc gcc-c++ autoconf automake

2、下载phddns-2.0.2.16556.tar.gz到某一个目录

[root@localhost ~]# wget http://download.oray.com/peanuthull/phddns-2.0.2.16556.tar.gz

3、解压所有文件

[root@localhost ~]# tar zxvf phddns-2.0.2.16556.tar.gz

4、进入目录并编译

[root@localhost ~]# cd phddns-2.0.2.16556

[root@localhost phddns-2.0.2.16556]# aclocal

[[email protected] phddns-2.0.2.16556]# autoconf

[[email protected] phddns-2.0.2.16556]# automake

[[email protected] phddns-2.0.2.16556]# ./configure

[[email protected] phddns-2.0.2.16556]# make

[[email protected] phddns-2.0.2.16556]# cd src

[[email protected] src]# ls -l phddns

-rwxr-xr-x 1 root root 80968 Aug 2 11:18 phddns

5、执行编译好的程序并配置(默认使用/etc/phlinux.conf,如果不存在这个文件则自动进入交互配置)

[[email protected] src]# ./phddns

输入服务器地址,如无特殊情况可使用默认值

Enter server address(press ENTER use phlinux3.oray.net):

输入您的Oray帐号名称

Enter your Oray account:

对应的Oray帐号密码

Password:

选择帮定的网卡,如无特殊,默认即可

Network interface(s):

eth0:192.168.141.18

lo:127.0.0.1

Choose one(default eth0):

选择日志保存到哪个文件

Log to use(default /var/log/phddns.log):

保存配置文件,选择yes则直接保存到/etc/phlinux.conf,输入other可以指定文件

Save to configuration file (/etc/phlinux.conf)?(yes/no/other):

接下来程序将已交互模式开始运行

192.168.141.18

NIC bind success

OnStatusChanged okConnecting

OnStatusChanged okDomainListed

OnDomainRegistered skyvense22.gicp.net

OnStatusChanged okDomainsRegistered

UserType: 0

看到上面这些就表示登录成功,这个时候可以按ctrl+c先退出程序

6、将phddns拷贝到你希望的位置

[[email protected] src]# cp phddns /usr/bin/

7、以后台模式启动花生壳并检查运行情况

[[email protected] ~]# /usr/bin/phddns -c /etc/phlinux.conf -d

phlinux started as daemon!

[[email protected] ~]# tail /var/log/phddns.log

2011/08/02 11:28:58.256| ExecuteUpdate OK, BeginKeepAlive!

2011/08/02 11:29:59.354| SendKeepAlive() 8208

2011/08/02 11:30:00.355| RecvKeepaliveResponse() Data comes, OPCODE:8272

2011/08/02 11:30:00.356| Keepalive response received, client ip: 116.231.123.96

2011/08/02 11:31:00.447| SendKeepAlive() 8208

2011/08/02 11:31:01.450| RecvKeepaliveResponse() Data comes, OPCODE:8272

2011/08/02 11:31:01.450| Keepalive response received, client ip: 116.231.123.96

8、退出花生壳

查看进程ID

[[email protected] ~]# ps -A | grep phlinux

13731 ? 00:00:00 phlinux

让后台进程退出

[[email protected]ost ~]# kill -9 13731

9、将花生壳加到系统启动时运行

[[email protected] ~]# vi /etc/rc.local

在文件的末尾加上一行:/usr/bin/phlinux -c /etc/phlinux.conf -d

二、花生壳Linux版本命令行参数说明

[[email protected] ~]# /usr/bin/phlinux -h

Peanuthull Linux-core 2.0 by oray.com, copyright 2011

Peanuthull Linux-core Help

--first-run

-f, run for the first time

用于首次启动时配置参数

--interact

-i, run as interactive mode

program will request for necessary parameters.

this mode will automatically enabled at first running,

or your configuration file has been lost.

启动交互模式

--daemon

-d, run as a daemon

program will quit after put itself to background,

and continue running even you logout,

you can use kill -9 <PID> to terminate.

后台模式

--config

-c, run with configuration file

program will run with the file

指定使用哪一个配置文件

--user

-u, run as the user

program will run as the user

以指定用户启动后台进程

--help

-h, print this screen.

Please visit http://www.oray.com for detail.

三、常见问题

如何手动修改登陆的用户名及密码?

您可以直接编辑/etc/phlinux.conf文件,对登陆用户名及密码进行修改。

花生壳日志保存路径

/var/log/phddns.log

为什么花生壳无法登陆?

花生壳使用的通信端口是TCP:6060和UDP:6060(方向:OUT),请确认防火墙没有把这几个通信端口封掉。

如何查看花生壳当前运行状态?

查看日志:

[[email protected] ~]# tail /var/log/phddns.log

2011/08/02 11:28:58.256| ExecuteUpdate OK, BeginKeepAlive!

2011/08/02 11:29:59.354| SendKeepAlive() 8208

2011/08/02 11:30:00.355| RecvKeepaliveResponse() Data comes, OPCODE:8272

2011/08/02 11:30:00.356| Keepalive response received, client ip: 116.231.123.96

2011/08/02 11:31:00.447| SendKeepAlive() 8208

2011/08/02 11:31:01.450| RecvKeepaliveResponse() Data comes, OPCODE:8272

2011/08/02 11:31:01.450| Keepalive response received, client ip: 116.231.123.96

如何在其他平台(非X86)编译运行?

交叉编译mips cpu版本方法:

1、安装交叉工具并配置环境

........

2、配置参数

./configure --host=i386-linux --target=mipsel-linux --build=mipsel-linux CXX=mipsel-linux-gcc CC=mipsel-linux-gcc LD=mipsel-linux-ld

3、make

4、最后静态链接下

mipsel-linux-gcc -g -O2 -o phlinux -s main.o phupdate.o PHGlobal.o PHSocket.o md5.o log.o generate.o coder.o blowfish.o bitstream.o base64.o ConvertUTF.o CCmdParser.o PhClient.o PhUpdater.o /opt/openwrt/mipsel-linux/lib/librt.a /opt/openwrt/mipsel-linux/lib/libstdc++.a //opt/openwrt/mipsel-linux/lib/libc.a

5、压缩下(好放到路由器的小空间)

upx -o phlinux2 phlinux

时间: 2024-10-11 16:45:29

苹果系统Mac OSX用花生壳phddns的相关文章

解决vmware虚拟机安装苹果系统Mac OS X 10.10出现“二进制转换不支持用于Mac OS X”的问题-网络教程与技术 -亦是美网络 - 傲游云浏览器 (beta) 4.9.3.100

解决vmware虚拟机安装苹果系统Mac OS X 10.10出现"二进制转换不支持用于Mac OS X"的问题 发布时间:2015-5-31 昨天给大家详细介绍了如何在VMware 11虚拟机上安装黑苹果系统Mac OS X 10.10,有不少同学按照教程的提示都安装成功了,也有个别同学在安装的过程中遇到了其他的问题,比如网名叫"眼睛."的同学在安装过程中就遇到这样的问题:"二进制转换不支持用于Mac OS X.要运行Mac OS X,你需要一台VMwa

Mac OSX系统、Linux、Windows命令行教程

Mac OSX系统.Linux.Windows命令行教程 一.各系统终端的使用方法 二.各系统命令的功能 用你的终端做一些事情 (command line, Terminal, PowerShell). 一.各系统终端的使用方法 Mac OSX 在Mac OSX系统上,你应该 按住 command 键,并敲空格键. 屏幕顶部会弹出一个蓝色的"搜索框". 输入"terminal". 点击终端应用程序,这个程序的图标看起来有点像一个黑盒子. 终端就打开了. 现在你可以在

在Mac OSX系统中搭建Python集成开发环境

本篇博客分享如何在Mac OSX系统中搭建Python集成开发环境 首先到Python官网下载python,python官网链接 这里选择下载Python2.7.9版本,下载完成之后安装: 安装成功,打开终端: 下面下载python开发的ide,http://www.jetbrains.com/pycharm/ 下载专业版,有30天的免费试用,足够我们学习python了. 安装,将Pycharm拖动到mac应用程序中 创建第一个Python项目: 运行python文件

mac osx 系统 brew install hadoop 安装指南

mac osx 系统 brew  install hadoop 安装指南 brew install hadoop 配置 core-site.xml:配置hdfs文件地址(记得chmod 对应文件夹,否则无法正常启动hdfs)和namenode的rpc通行端口 配置mapred-site.xml  中的map reduce通信端口 配置hdfs-site.xml 中的datanode 副本数. 格式化hdfs文件系统 启动Hadoop 和 yarn  namenode  datanode  map

Mac OSX 10.9.4 mavericks 启用系统Apache、PHP服务

众所周知,Mac OSX已经内置了Apache http server 和 php,只用简单的配置一下就能够使用php环境,做本地测试很不错. 1.启用Apache Http Server(sudo apachectl start) 记住下面的命令: // 打开终端(Terminal)输入: sudo apachectl start // 启动服务 sudo apachectl stop // 关闭服务 sudo apachectl restart // 重启服务 通过上述命令可以对系统自带Ap

MAC OSX下终端通过NTLM验证,通过代理上网(花了一天时间才解决这个)

MAC OSX下终端通过NTLM验证,通过代理上网 公司网络限制如下: 公司通过代理来控制内网用户访问外网的权限.用户名和密码为域用户,采用的验证方式是NTLM(用的是foreFront TMG) 遇到的问题: 在虚拟机,安装的系统为MAC OSX10.9.3,开发iOS,需要在terminal(终端),加载相应的数据包,并安装. 如安装ruby环境,需要先安装rvm,curl -L https://get.rvm.io | bash -s stable 407 Proxy Authentica

Mac OSX (EI Capitan)搭建Caffe环境并配置python接口

Caffe是一个清晰而高效的深度学习框架,其作者是博士毕业于UC Berkeley的贾扬清.Caffe是纯粹的C++/CUDA架构,支持命令行.Python和MATLAB接口:可以在CPU和GPU直接无缝切换.我在MacbookPro(无NVIDIA显卡)上大费周章地配置了Caffe的环境,并花了许多时间配置其python接口. 一.下载Caffe github上的下载地址:https://github.com/BVLC/caffe进入到下载后的路径,并复制 Makefile.config.ex

【动态域名解析工具】tunnel,国内版的ngrok,花生壳可以睡觉了

在笔者的系列微信开发教程中,有一个比较基础且重要的一节:微信开发的调试.在文章中我推荐了两种动态域名解析的工具用于将本地的开发环境部署成服务器,一种是花生壳,一种是ngrok,但毕竟我等屌丝用不起或者不愿意付费试用花生壳,导致花生壳经常来大姨妈(解析失败).而ngrok的服务器是国外的,而天朝的网络想必大家都懂的.那在这样的一个环境下,调试微信的时候显得特别不方便.无意中呢,看到tunnel这样一个工具,看了下官网的介绍后,觉得尝试使用下,最终让我觉得放弃使用花生壳和ngrok了.至于为何,那我

XE6移动开发环境搭建之IOS篇(4):VMware9里安装Mac OSX 10.8(有图有真相)

XE6移动开发环境搭建之IOS篇(4):VMware9里安装Mac OSX 10.8(有图有真相) 2014-08-18 21:10 网上能找到的关于Delphi XE系列的移动开发环境的相关文章甚少,本文尽量以详细的内容.傻瓜式的表达来告诉你想要的答案. 以下内容比较长,我们努力地图解每一个步骤,没有耐心的观众可以忽略前27步,直接看第28步最终结果.--------------------------------------------------------------- 1.在虚拟机主界