キャンセル
次の結果を表示 
次の代わりに検索 
もしかして: 
cancel
850
閲覧回数
0
いいね!
2
返信

ASAのConfigの件

peddki3
Level 1
Level 1

ASAConfigの件で質問です。

すみません。実機があれはすぐに確認出来るのですが、無いので質問します。

asa(config)# tunnel-group test general

asa(config-tunnel-general)# address-pool (inside) addrpool1 addrpool2

と設定した後、address-pooladdrpool2だけを削除するには、どうしたら良いですか? no address-pool (inside) addrpool2

とすれば良いですが? それとも、

no address-pool (inside) addrpool1 addrpool2

と入れた後に、

address-pool (inside) addrpool1

と入れなければならないでしょうか?

それとも、別な方向はありますでしょうか?

申し訳ございませんが、どなたかご教示お願い致します。

1 件の受理された解決策

受理された解決策

Akira Muranaka
Level 8
Level 8

こんばんは!

ちょうど実機が近くにあったので、以下ご参考まで!

 

Pool 1つのみ指定で 一部だけ消去もできるようです。

・・・というか、同時に2つ設定しても、sh run上は分けて自動登録されてますね。

ASA5555(config)# tunnel-group test general-attributes
ASA5555(config-tunnel-general)# address-pool (inside) test-pool01 test-pool02
ASA5555(config-tunnel-general)#
ASA5555(config-tunnel-general)# sh run tunn
ASA5555(config-tunnel-general)# sh run tunnel-group test
tunnel-group test type remote-access
tunnel-group test general-attributes
 address-pool (inside) test-pool01
 address-pool (inside) test-pool02
ASA5555(config-tunnel-general)#
ASA5555(config-tunnel-general)# no address-pool (inside) test-pool02
ASA5555(config-tunnel-general)#
ASA5555(config-tunnel-general)# sh run tunnel-group test
tunnel-group test type remote-access
tunnel-group test general-attributes
 address-pool (inside) test-pool01
ASA5555(config-tunnel-general)# 

 

元の投稿で解決策を見る

2件の返信2

Akira Muranaka
Level 8
Level 8

こんばんは!

ちょうど実機が近くにあったので、以下ご参考まで!

 

Pool 1つのみ指定で 一部だけ消去もできるようです。

・・・というか、同時に2つ設定しても、sh run上は分けて自動登録されてますね。

ASA5555(config)# tunnel-group test general-attributes
ASA5555(config-tunnel-general)# address-pool (inside) test-pool01 test-pool02
ASA5555(config-tunnel-general)#
ASA5555(config-tunnel-general)# sh run tunn
ASA5555(config-tunnel-general)# sh run tunnel-group test
tunnel-group test type remote-access
tunnel-group test general-attributes
 address-pool (inside) test-pool01
 address-pool (inside) test-pool02
ASA5555(config-tunnel-general)#
ASA5555(config-tunnel-general)# no address-pool (inside) test-pool02
ASA5555(config-tunnel-general)#
ASA5555(config-tunnel-general)# sh run tunnel-group test
tunnel-group test type remote-access
tunnel-group test general-attributes
 address-pool (inside) test-pool01
ASA5555(config-tunnel-general)# 

 

なるほど、sh run上は分けて自動登録されるので、

Pool 1つのみ指定で1つ消えるんですね。

 

ご回答頂き、ありがとうございます!

とても助かりました!