8月 15 2021
法人向け無線LANアクセスポイントのSTAセパレーター、SSIDセパレーターとは何か(バッファロー)
法人向け無線LANアクセスポイントのSTAセパレーター、SSIDセパレーターとは何か(バッファロー)
8月 15 2021
pass * * icmp がないと返ってこない。
ip filter 200030 pass * * icmp
tunnel select 1
tunnel encapsulation map-e
ip tunnel mtu 1460
ip tunnel secure filter in 200030 200039
ip tunnel secure filter out 200099 dynamic 200080 200082 200083 200098 200099
ip tunnel nat descriptor 1000
tunnel enable 1
な感じ。
参考 http://blog.livedoor.jp/lucy9000/archives/65639587.html
8月 15 2021
RTX で LAN1 と LAN2 を遮断する
ip lan1 address 192.168.120.1/24
ip lan1 secure filter in 10 99
ip lan3 address 192.168.220.1/24
ip lan3 secure filter in 11 99
ip filter 10 reject * 192.168.220.0/24 * * *
ip filter 11 reject * 192.168.120.0/24 * * *
ip filter 99 pass * * * * *
参考 https://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q1453178039
8月 14 2021
checkboxにreadonlyはない。
<input type=’checkbox’ onclick=’return false;’>
<input type=’checkbox’ onclick=’return false;’ checked>
とするとOKらしい。
ここを見ました。
https://qiita.com/black_iron/items/e7af697b641112275bf1
8月 13 2021
HTML5のpattern で 半角数字桁数指定が効かない。
<input type=”text” name=”sample” pattern=”\d{2}”>
な感じの書き方がどうしても効果がない。
3日ほど悶えてわかったのが、smartyのテンプレートファイルの中で”{“を使いたいときは{literal}{/literal}で囲まないと、実行時に消されてしまう。
実行時にソースを見ると
<input type=”text” name=”sample” pattern=”\d2″>
こうなっているのに気が付いた。
{literal}
<input type=”text” name=”sample” pattern=”\d{2}”>
{/literal}
と書かないとダメっぽい。