??routeros可以運行Oray,但是在Oray的官方腳本中,routeros是默認作為上網(wǎng)路由器的。
?(Oray官方文檔:http://service.oray.com/question/869.html)
專注于為中小企業(yè)提供做網(wǎng)站、網(wǎng)站建設(shè)服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)下冶免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上1000家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。
{
local ipaddr
local server "http://dDNS.oray.com"
local domain "域名"
local par "/ph/update\?&hostname=$domain&myip=$ipaddr"
local users "用戶名"
local paswd "密碼"
:set ipaddr [/ip address get [/ip address find interface=pppoe-out1] address]
:set ipaddr [:pick $ipaddr 0 ([len $ipaddr] -3)]
/tool fetch url=($server . $par) mode=http user=$users password=$paswd
}
??從第8行代碼可以看出,該腳本是將pppoe-out1接口的IP當(dāng)作公網(wǎng)IP,也就是說routeros必須是上網(wǎng)路由器,該腳本才能生效。
??但是如果routeros是在局域網(wǎng)里面(例如routeros作為內(nèi)網(wǎng)服務(wù)器),外面還有一層路由器,那這個腳本就必須做修改,前提條件是routeros也能上網(wǎng)。
{
local ipaddr;
/tool fetch url="http://myip.dnsomatic.com/" mode=http dst-path=mypublicip.txt
local ip [file get mypublicip.txt contents ]
put $ip
:set ipaddr "$ip";
local server "http://ddns.oray.com";
local domain "域名";
local par "/ph/update\?&hostname=$domain&myip=$ipaddr";
local users "用戶名";
local paswd "密碼";
/tool fetch url=($server . $par) mode=http user=$users password=$paswd;
}
??前面的5行代碼就是讓routeros上網(wǎng)獲取當(dāng)前的公網(wǎng)IP,并保存在mypublicip.txt中,然后登陸Oray,注冊IP。
?(參考:https://forum.mikrotik.com/viewtopic.php?t=73287)
本文名稱:局域網(wǎng)的routeros中設(shè)置Oray
網(wǎng)址分享:http://jinyejixie.com/article24/pdccce.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、網(wǎng)站導(dǎo)航、微信小程序、全網(wǎng)營銷推廣、商城網(wǎng)站、網(wǎng)站策劃
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)