2009年12月12日 星期六

martian source 火星連線 @ 工作雜記 :: Xuite日誌

martian source 火星連線 @ 工作雜記 :: Xuite日誌
martian source 未知的連線
大量的洗螢幕和log檔
讓人煩不勝煩
log檔 /var/log/messages

Mar 19 16:36:43 ADSLserver kernel: ll header: ff:ff:ff:ff:ff:ff:00:48:54:5b:0d:3f:08:00
Mar 19 16:36:43 ADSLserver kernel: martian source 192.168.6.255 from 192.168.1.2, on dev eth0
Mar 19 16:36:43 ADSLserver kernel: ll header: ff:ff:ff:ff:ff:ff:00:48:54:5b:0d:3f:08:00
Mar 19 16:36:43 ADSLserver kernel: martian source 192.168.6.255 from 192.168.1.2, on dev eth0
Mar 19 16:36:43 ADSLserver kernel: ll header: ff:ff:ff:ff:ff:ff:00:48:54:5b:0d:3f:08:00

這就是所謂的
逆向路徑過濾 (Reverse Path Filtering)

這個情形常發生在兩個網段共存的linux 主機上
預設情況下﹐router 會路由所有東西﹐就算該封包‘顯然’不屬於貴網路的常見的例子﹐莫過於將私有 IP 泄漏到 internet 上去。
假如您有一個界面﹐其上設定的路由為 195.96.96.0/24﹐那您不會預期來自 212.64.94.1 的封包會到達這裡


其實是無害的
如果一直跑出來
可以選擇關掉它


解决方法 :

一、取消log_martians
echo 0 > /proc/sys/net/ipv4/conf/all/log_martians

二、或是關掉rp_filter
1.清空rp_filter
echo 0 >/proc/sys/net/ipv4/conf/eth0/rp_filter

注意:
紅字 eth0 為log檔內那個 device ,不可打錯

2.另外我們還要關掉 rp_filter
vi /etc/sysctl.conf
net.ipv4.conf.default.rp_filter=0

2009年12月9日 星期三

在Gentoo中使用因License被mask的包 - Andrew's Scratch - 博客大巴

在Gentoo中使用因License被mask的包 - Andrew's Scratch - 博客大巴

今天更新了GENTOO,发现virtualbox-bin有更新,但却被mask了,把virtualbox-bin添加到/etc/portage/package.unmask也不起作用:

!!! All ebuilds that could satisfy "app-emulation/virtualbox-bin" have been masked.
!!! One of the following masked packages is required to complete your request:
- app-emulation/virtualbox-bin-3.0.10 (masked by: PUEL license(s))
A copy of the 'PUEL' license is located at '/usr/portage/licenses/PUEL'.

For more information, see the MASKED PACKAGES section in the emerge
man page or refer to the Gentoo Handbook.

Google了一下,发现这个是因为License而被mask,解决方法有二:

一是在/etc/make.conf里面加入下面一行:

ACCEPT_LICENSE="PUEL"

二是在etc/portage/package.license里面添加下面的一行就可以了:

app-emulation/virtualbox-bin PUEL

2009年12月1日 星期二

Connect to GPRS/3G over Bluetooth

PPP原理參考: http://www.xs4all.nl/~ernstagn/GPRS-HOWTO/
安裝 blueman-1.21
然後在 /etc/ppp/options 加入 noipdefault
即可透過 blueman 的PPPSupport 機制上網
Related Posts Plugin for WordPress, Blogger...