06/30: Windows > Anonymous LDAP
Anonymous LDAP operations in Windows 2003 AD
adsiedit is in CD.
CN=Directory Service,CN=Windows NT,CN=Services,, then dSHeuristics = 0000002
Add "anonymous logon" in the object:
AppNote: Configuring Active Directory to Allow Anonymous Queries for NSL LDAP Client
adsiedit is in CD.
CN=Directory Service,CN=Windows NT,CN=Services,
Add "anonymous logon" in the object:
AppNote: Configuring Active Directory to Allow Anonymous Queries for NSL LDAP Client
HowTo: Add a Persistent Static Route in Redhat Enterprise Linux | ItsyourIP.com
How do I create persistent static routes in Red Hat Enterprise Linux 4?
How do I set my static routes in Red Hat Enterprise Linux 2.1?
To add a persistent static route in Redhat Enterprise Linux create a file called route-X in the /etc/sysconfig/network-scripts/ directory
Example:
GATEWAY0=192.168.1.1
NETMASK0=255.255.255.0
ADDRESS0=10.10.10.0
GATEWAY1=192.168.1.1
NETMASK1=255.255.255.0
ADDRESS1=20.20.20.2
To check:
# route (-e or -ee)
How do I create persistent static routes in Red Hat Enterprise Linux 4?
How do I set my static routes in Red Hat Enterprise Linux 2.1?
To add a persistent static route in Redhat Enterprise Linux create a file called route-
Example:
GATEWAY0=192.168.1.1
NETMASK0=255.255.255.0
ADDRESS0=10.10.10.0
GATEWAY1=192.168.1.1
NETMASK1=255.255.255.0
ADDRESS1=20.20.20.2
To check:
# route (-e or -ee)
06/24: Linux > Network
"/etc/sysconfig/network-scripts"
Networking - Adding an IP Address to an Interface With Red Hat and CentOS
# ifconfig eth0:0 10.129.1.99 netmask 255.255.255.0
# tail /var/log/messages
# fdisk -l /dev/sdc1
How to add an external USB hard drive to your Linux server (Redhat, CentOS, Ubuntu, Gentoo and SUSE) | my-whiteboard
# fdisk -l /dev/sdc1
How to add an external USB hard drive to your Linux server (Redhat, CentOS, Ubuntu, Gentoo and SUSE) | my-whiteboard
pfile
Export a binary server parameter file into a text initialization parameter file (INIT.ORA).
% sqlplus "/ as sysdba"
SQL# create pfile from spfile;
Export a binary server parameter file into a text initialization parameter file (INIT.ORA).
% sqlplus "/ as sysdba"
SQL# create pfile from spfile;
HOWTO - Linux VNCserver
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
startx &
To kill
vncserver -kill :1
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
startx &
To kill
vncserver -kill :1
06/09: 数学記号の表 - Wikipedia
CygwinによるSSHサーバ構築 インストール ii [HiTo!サポートサイト Tech.info]
Admin項目から『cygrunsrv』を選択します。このパッケージはSSHデーモンの制御を行います。選択できたら、『次へ』をクリックします。
install画面2ダウンロードするパッケージ選択の2画面目です。Net項目から『openssh』と『openssl』を選択します。このパッケージはSSH機能を提供します。選択できたら、『次へ』をクリックします。
install画面3ダウンロードするパッケージ選択の3画面目です。System項目から『procps』を選択します。このパッケージはシステム情報を取得する「vmstat」や「free」などのコマンドを提供します。選択できたら、『次へ』をクリックします。
Admin項目から『cygrunsrv』を選択します。このパッケージはSSHデーモンの制御を行います。選択できたら、『次へ』をクリックします。
install画面2ダウンロードするパッケージ選択の2画面目です。Net項目から『openssh』と『openssl』を選択します。このパッケージはSSH機能を提供します。選択できたら、『次へ』をクリックします。
install画面3ダウンロードするパッケージ選択の3画面目です。System項目から『procps』を選択します。このパッケージはシステム情報を取得する「vmstat」や「free」などのコマンドを提供します。選択できたら、『次へ』をクリックします。
06/05: wget
Geek to Live: Mastering Wget
Example:
# wget --no-check-certificate --user-agent "Mozilla Firefox" --load-cookies /home/user/.mozilla/firefox/xrp6qley.default/cookies.txt https://www.h-osa.com/
Example:
# wget --no-check-certificate --user-agent "Mozilla Firefox" --load-cookies /home/user/.mozilla/firefox/xrp6qley.default/cookies.txt https://www.h-osa.com/
06/02: HTTP
Hypertext Transfer Protocol - Wikipedia, the free encyclopedia"HEAD Asks for the response identical to the one that would correspond to a GET request, but without the response body. This is useful for retrieving meta-information written in response headers, without having to transport the entire content. GET Requests a representation of the specified resource. By far the most common method used on the Web today. Should not be used for operations that cause side-effects (using it for actions in web applications is a common misuse). See"
tcpdump を使いこなそう
tcpdump atmarkit
tcpdump atmarkit
# tcpdump -ni eth0 host 192.168.0.1
(i specifies interfece, n is numeric output)
# tcpdump host [IP] -nnxX -s0 -l | tee /tmp/tcpdump.cap
# tcpdump -i eth1 -s0 -n -w /tmp/tcpdump.cap
(-w is useful to read Wireshark(http://www.wireshark.org/))
# iptables -F [chain] (Delete/Flush all rules in chain)
# iptables -L [chain] -n (List the chain with numeric output)
# arping -I eth0 192.168.0.1 (which Ethernet device to use)
# time echo quite | telnet 192.168.0.1 8080