現時点の hostapd HEAD での動作例
- vlan_bridge - いつでも有効
- dynamic_vlan, vlan_file, vlan_naming - CONFIG_NO_VLAN でなければ有効
- vlan_tagged_interface - CONFIG_NO_VLAN でない、かつ CONFIG_FULL_DYNAMIC_VLAN の場合に有効
| # dmesg | |
| ew driver cdc_acm | |
| drivers/usb/class/cdc-acm.c: v0.23:USB Abstract Control Model driver for USB modems and ISDN adapters | |
| hso: /home/snapshot/snapshot/snapshot_CS_Products/1.96_1.01_2013-07-25-05-28-JST_WZR-300HP-AP93/linux-2.6.15-ath-ap93/src/hso_26/hso.c: 1.12-Option Option Wireless | |
| usbcore: registered new driver hso | |
| SGI XFS with large block numbers, no debug enabled | |
| change fat_tz_minuteswest = -540 | |
| OK1OK2mcsnoop: flush all snoop entry | |
| mcsnoop: Bridge Multicast Snooping module Ver0.1/20070912 | |
| debug : Enter [BRCTL_ADD_RULE_IF] |
| --- hoge132__s.c 2013-09-27 16:58:14.221425200 +0900 | |
| +++ hoge14__2s.c 2013-09-24 15:33:20.416477600 +0900 | |
| @@ -2,9 +2,13 @@ | |
| struct ofp_action_experimenter_header { | |
| uint16_t type; /* OFPAT_EXPERIMENTER. */ | |
| uint16_t len; /* Length is a multiple of 8. */ | |
| - uint32_t experimenter; /* Experimenter ID which takes the same | |
| - form as in struct | |
| - ofp_experimenter_header. */ | |
| + uint32_t experimenter; /* Experimenter ID. */ |
Fedora 20
# yum install docker-io
# systemctl start docker
Add myself to group docker.
The protocol over /var/run/docker.sock or the INET socket is the RESTful HTTP API.
Windows XPのサポート切れで騒いでいるのに便乗してPCをUbuntuにしてしまう試み。
nautilus の cifs はセッションタイムアウトを頻繁に起こすmount.cifs でマウントして操作すれば比較的安定?# apt-get install postgres-xc
# /etc/init.d/postgres-xc start
# su postgres-xc -c createdb testdb
ごちゃごちゃ言われることがある。/etc/init.d/postgres-xc で restart を 2 回やれば回復するだろう。
createdb: database creation failed: ERROR: No Datanode defined in cluster
HINT: You need to define at least 1 Datanode with CREATE NODE.
ovs-ofctl is a genral tool for openflow protocol.
It can handle not only ovs, but also communicate with the other
openflow switch implementation.
ovs-ofctl flow rule delimiter is not only "," in some places.
For example strtok_r second arg is "=, \t\r\n" in parse_ofp_str__() in ofp-parse.c
| package main | |
| func main(){ | |
| buf := make([]byte, 10000) | |
| length := len(buf) | |
| for i:=0; i<100000; i++ { | |
| for j:=0; j<100000; j++ { | |
| buf[(i+j)%length] = buf[j%length] | |
| } | |
| } |