インストールはエラーがなかったです。
しかしip-filterを起動しようとするとエラーになります。
root@ns[/usr/local/src]% /etc/init.d/ipfboot start
can’t load module: No such file or directory
pfil not available to support ipfilter
googleで調べたら、下記ページをみつけました。
http://can.tankero.us/archives/category/solaris/?cat=5
上記URLの
At this point, if you try to start ipf using the /etc/init.d/ipfboot script you will get an error “can’t load module: No such file or directory. pfil not available to support ipfilter”. You will need to manually push the pfil module onto the interface. For a bge interface the following should work ifconfig bge0 modinsert pfil@2.
とあったので
#ifconfig eri0 modinsert pfil@2
とコマンドをいれても、
ifconfig: fail to insert module: pfil: Invalid argument
とエラーになります。
解決のご教示をよろしくお願いします。
http://www.cse.ucsd.edu/users/lbreyer/ipf/
Solaris 8 IPF Install
ifconfig コマンドの最後に引数として「*」を入れればいいみたいです。
# ifconfig eri0 modinsert pfil@2 *
おお!!きた〜! ありがとうございます。m(_ _)m
これでやってみます。ありがとうございます。