Your ssh and telnet connections are proxied from 10.200.0.1. Thus when you telnet or ssh into linuxzoo, a special program catches this traffic and forwards it on your behalf. This makes ssh and telnet traffic appear to arrive at your virtual machine from a single networked address, the proxy address of 10.200.0.1.
Insert a single rule using this script, inserting at the start of the
INPUT chain so that ssh is ONLY supported
from 10.200.0.1 arriving on eth0. Leave the other rules shown above unchanged.
If ssh connections arrive from anywhere else, they should be
directed to REJECT.
Note that if you change one of the other rules, insert more than 1 rule, or do anything other than insert a single rule at the start of the chain, you will always be marked wrong!
Hint: you can put the "!" character in front of an ip address and the rule checks that it is NOT that address.