S小魚仔S 網誌搜尋

2019年8月29日 星期四

S小魚仔S Centos 7 離線安裝 Python 3

Centos 7 已內建 Python 2.7,經常去客戶現場需要使用 Python 3 但是都無法連網,紀錄完整安裝過程。
PS.記得安裝前檢查「yum list gcc」是/否安裝,因編譯安裝需要仰賴「gcc」。

#=====安裝「Python 3.7.4」(離線安裝)===
tar Jxvf /opt/Python-3.7.4.tar.xz -C /opt
cd /opt/Python-3.7.4
./configure --enable-optimizations --with-ssl=openssl
make && make install

#重新設定「軟連結」指令
mv /usr/bin/python /usr/bin/python_old
ln -s /usr/local/bin/python3 /usr/bin/python

#檢查「Python」版本
python -V

#更新「python 3.x」版本「yum」會無法使用,因「yum」使用「python2」這裡還需要替換「/usr/bin/yum」 與「/usr/libexec/urlgrabber-ext-down

vi /usr/bin/yum

#!/usr/bin/python2.7

vi /usr/libexec/urlgrabber-ext-down

#!/usr/bin/python2.7

#=====安裝「setuotools」(離線安裝)===
tar -xzf /opt/setuptools-30.4.0.tar.gz -C /opt/
cd /opt/setuptools-30.4.0
python2 setup.py build
python2 setup.py install

#=====安裝「pip」(離線安裝)===
tar -xzf /opt/pip-9.0.3.tar.gz -C /opt/
cd /opt/pip-9.0.3
python2 setup.py install

#顯示「setuptools」版本
pip show setuptools

#顯示 「pip」版本
pip -V

2019年8月20日 星期二

S小魚仔S Cisco SG250-08 注意事項

不斷在研究「SG250」也不斷在採坑,總結一下遇到「問題」。

#===設定「Interface Vlan IP」注意事項===
PS. SG250 支持多組「Interface Vlan IP
使用「SG250」預設 IP - 192.168.1.254 ( VLAN 1 ) ,第一次設定「Interface VLAN IP」會自動取消原本「Vlan 1 - Interface Vlan IP」造成「192.168.1.254」無法登入,這個問題我遇到起碼三次剛開始不懂最後按上「reset」(超過10秒) 回復原廠配置,於是我找這篇文章「Unable to create IPv4 Interface entries on SG300-20 switch」,If the sg300 or 500 device has the default IP  and you add another IP interface ( on a vlan or on a port) it will determine that static or dhcp interface is the management interface and the 'default' address will not work any more。
正確設定方式,請參考這篇影片「Cisco Tech Talk: Configuring Inter-VLAN Routing on SG250 Series Switches」。請先配置「VLAN」然後「端口」選擇「添加」新 VLAN,避免第一次設定「Default Interface VLAN IP」失效,第二次配置後則沒有任何問題。

S小魚仔S Cisco SG250-08 升級「Firmware」

最近剛入手「Cisco SG250-08」以前就一直在尋找「小型家用」因為想練習「思科」指令,但是此款卻沒有「Console Port」升級 firmware2.3.5.56」以上版本支持「telnet」與「ssh」。

SG250 - Deafult Management IP ( 192.168.1.254 )
進入「Web UI」( Switch Management ) 設定介面
PS. Default User cisco、Pwd cisco



升級完成就可以開啟「ssh


注意
「SG250-08」不支持「POE」
「SG250-08HP」支持「POE」( 802.3at 與 802.3af )

參考資料