Forum Discussion
Bhuvnesh_102719
Nimbostratus
Sep 17, 2013block ssh for a node ip
hello experts,
We have a virtual server for anyip and port.
virtual V_Service_Forward_IP {
ip forward
destination any:any
mask 0.0.0.0
vlans service enable
}
Now I received a request from my customer to block ssh traffic for a particular IP 10.xxx.xxx.xx2. I suppose it is possible to achieve by iRule.
when CLIENT_ACCEPTED {
if { [[IP::remote_addr] equals 10.xxx.xxx.xx2] and [server_port == 22]} {
log local0. “ssh request for: [IP:remote_addr] from IP: [IP::client_addr] rejected by iRule blockssh”
reject
}
}
Kindly advise if it is ok or i missed something.
Many thanks.
1 Reply
- Kevin_Stewart
Employee
You could also very easily do this with packet filter rules. The iRule will allows a full three-way handshake before denying the connection while the packet filter will stop it before that.
Otherwise your iRule might look like this:
when CLIENT_ACCEPTED { if { [IP::addr [IP::local_addr] equals 10.xxx.xxx.xx2] and [TCP::local_port == 22] } { log local0. "ssh request for: [IP::local_addr] from IP: [IP::client_addr] rejected by iRule blockssh" reject } }
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects