script 可點竄成


作者網站:http://git.aaronlumsden.com/strength.js/
檔案大小:13 KB (包括規範)

文章標籤

marshabaopb 發表在 痞客邦 留言(0) 人氣()

 

因為信件發不出去(gmail hotmail 直接被退回)
問了CPanel官方後
他說hostname無法對應,要改成與nameserver一樣
然後若何重建Exim PTR /保存DNS Cache 和更新MAIL HELO


進入WHM
Home »Service Configuration »Exim Configuration ManagerDocumentation



Rebuild Reverse DNS Cache and Update Mail HELO

文章標籤

marshabaopb 發表在 痞客邦 留言(0) 人氣()

比來因為CENTOS 7 辦事會莫名的封閉,查了發現是KENERL問題,所以決議升到CENTOS 8-9,

我的INTEL雙網網卡 來當做家裡的firewall, 於是安裝了CENTOS 8 - 9, 並用pppoe 來毗鄰中華電信的Router, 而且寫了一些iptables 的rules 來當作firewall 及NAT router.
但是覺得有問題, 有時連不出去. 現象是如許的:


然則在NAT 後面的電腦,GOOGLE PTT網站 連線都很ok, , 只要碰上yahoo跟遊戲 的連線, 就連不上, ftp 也ok.


這問題擺了好久都沒去理會. 今天終於有空好好的來追問題的源頭. 發現似乎是跟pppoe 有關.
問了小洲大大才發現

MTU
MTU (Maximum Transmission Unit) 是指網路介面卡上最大傳輸單位, 其單位為bytes. 在大大都的Ehternet 上, 這個值凡是是1500. 因為如斯, 在PPPoE 中, 因為還有header問題, 所以這個值就得設的比力小, 凡是為1492 (= 1500 – 2(PPP)- 6(PPPoE))

MSS
MSS (Maximum segment size) 是TCP protocol 中的一個參數, 是指TCP 每次資料傳輸分段的最大值. 當TCP 在handshake 時, 雙方host 會查看MSS 這個欄位, 來決意兩邊資料傳輸分段的大小. 在Ethernet 中MSS 值最大為1460 bytes.
緣由是在Ethernet 中 MTU = IP Header + TCP Header + MSS + FCS.
(FCS 是指Frame check sequence, 通常採用CRC演算法, 在Ethernet 中, 它佔4 bytes.)
但是在PPPoE 中MTU 為1492, 所以其MSS 只能設為1452.

問題所在
當CENTOS 8 在開機後, 啟動了ppp0, 其內定將MTU 設為1492, 而且會主動設定一條iptable rule,



因為在NAT 後面的電腦, 其實不知道前真個router 是用什麼介面連到internet, 所以它和遠真個電腦創立TCP 連線時, 有可能會將MSS 設為1460. 但是由於firewall 或router 端使用PPPoE連線, 若MSS 大於1452會造成資料爆掉, 所以上述的iptable rule 強迫偷改其MSS值(在IPV4下 = PMTU – 40, 在IPV6下 = PMTU – 60). 是以MSS 就會被改成1452, 這樣子就不會爆掉了.

但是我自己寫的iptable rule script 中, 一入手下手就用了下列設定, 清除了本來的所有設定

 

  1. # 清除所有規則
  2. iptables -F -t filter
  3. iptables -X -t filter
  4. iptables -Z -t filter
  5. iptables -F -t mangle
  6. iptables -X -t mangle
  7. iptables -Z -t mangle
  8. iptables -F -t nat
  9. iptables -X -t nat
  10. iptables -Z -t nat
文章標籤

marshabaopb 發表在 痞客邦 留言(0) 人氣()

 

line104.jpg

文章標籤

marshabaopb 發表在 痞客邦 留言(0) 人氣()

 

 

文章標籤

marshabaopb 發表在 痞客邦 留言(0) 人氣()






接下來到  MUTICHAIN

輸入要橋接的鏈及金額就可以了
2.png

文章來曆: NetYea 網頁設計

1.png

文章標籤

marshabaopb 發表在 痞客邦 留言(0) 人氣()

起首,我們在combo.html中引入jquery庫和highcharts圖表類:

 

文章標籤

marshabaopb 發表在 痞客邦 留言(0) 人氣()

記實一下批量抓取 Google 搜索成效裡的連結的方法。


如果還沒有安裝以下,要先下載安裝:
 

  1. pip install beautifulsoup4
  2. pip install google
文章標籤

marshabaopb 發表在 痞客邦 留言(0) 人氣()

網頁設計網頁設計 用 jQuery 來做圖片偽浮水印
  1.  
  2. // 避免沒法准確獲得圖片的寬高
  3. // 是以動作延遲到 window.onload
  4. $(window).load(function(){
  5.         // 獲得要加上偽浮水印圖片後來逐一做設定
  6.         $(".water").each(function(i, ele){
  7.                 // 先把目前元素轉換成 jQuery 物件跋文錄起來
  8.                 // 再取得自己圖片的寬高及 alt
  9.                 var _this = $(ele),
  10.                         _position = _this.position(),
  11.                         _height = _this.height(),
  12.                         _width = _this.width(),
  13.                         _alt = _this.attr('alt') || '';
  14.  
  15.                 // 在 body 中插入一個寬高等於 _this 的 blank.gif 圖片
  16.                 // position 設成 absolute 後移動到 _this 的同位置
  17.                 $('<img />').css({
  18.                         position: 'absolute',
  19.                         zIndex: 10000,
  20.                         top: _position.top,
  21.                         left: _position.left
  22.                 }).attr({
  23.                         src: 'blank.gif',
  24.                         height: _height,
  25.                         width: _width,
  26.                         title: _alt
  27.                 }).appendTo('body');
  28.  
  29.                 // 在 body 中插入一個寬高檔於 _this 的 Div
  30.                 // position 設成 absolute 後移動到 _this 的同位置
  31.                 // 此 Div 的 background-image 就放我們想要放的 logo
  32.                 // 並可指定它的 background-position 位置
  33.                 $('<div />').css({
  34.                         height: _height,
  35.                         width: _width,
  36.                         position: 'absolute',
  37.                         zIndex: 9999,
  38.                         top: _position.top,
  39.                         left: _position.left,
  40.                         backgroundImage: 'url(logo.gif)',
  41.                         backgroundPosition: 'bottom right',
  42.                         backgroundRepeat: 'no-repeat'
  43.                 }).appendTo('body');
  44.         });
  45. });
文章標籤

marshabaopb 發表在 痞客邦 留言(0) 人氣()

帶排序功能的js masonry瀑布流插件查看演示  下載檔案


扼要教程
sortableJs是一款帶排序功能的js masonry瀑布流插件。sortableJs可以或許使元素以卡片情勢顯示,並以masonry瀑布流方式進行結構,經由過程點擊分類按鈕,可以將卡片按指定的體式格局動態排序。

利用方法
在頁面中引入sortable.min.css和sortable.min.js文件。

  1. <link rel="stylesheet" href="path/to/sortable.min.css">
  2. <script src="path/to/sortable.min.js"></script>  
  3.  
文章標籤

marshabaopb 發表在 痞客邦 留言(0) 人氣()