溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

iRules做智能選路雙線負(fù)載

發(fā)布時(shí)間:2020-06-22 05:46:05 來(lái)源:網(wǎng)絡(luò) 閱讀:1136 作者:simyang 欄目:網(wǎng)絡(luò)安全

本次IRULE主要是用來(lái)做智能選路用。

Remote_addr為設(shè)備源IP, local_addr為F5或者目標(biāo)IP。

---------------begin-----------------------------

    when CLIENT_ACCEPTED {

if {[matchclass [IP::remote_addr] equals ct_first_class]} {

      pool ct_first_pool   

   }

elseif {[matchclass [IP::remote_addr] equals cnc_first_class]} {

      pool cnc_first_pool   

   }

elseif {[matchclass [IP::remote_addr] equals loadbalance]} {

      pool default_gw   

   }

elseif {[matchclass [IP::local_addr] equals cnc_class]} {

      pool cnc_first_pool   

   }

else {

       forward

      }

}

----------------------end--------------------------------

執(zhí)行后應(yīng)該達(dá)到的目標(biāo)是:

1、所有特殊IPct_first_class/cnc_first_class

2、  Loadbalance組則是做兩條線路負(fù)載

3、  所有去往中國(guó)電信cnc目標(biāo)的都優(yōu)先走電信,如果電信有問(wèn)題則走聯(lián)通

4、  其它去往去除電信以外的如聯(lián)通、國(guó)內(nèi)外其它運(yùn)營(yíng)商IP目標(biāo)的話則走電信線路

5、  其它入向流量不匹配出向的轉(zhuǎn)發(fā)負(fù)載策略,直接forward看路由轉(zhuǎn)發(fā)!


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI