ip access-list standard admin-access
permit [internal-network] [wildcard-mask]
permit [second internal network] [wildcard-mask]
[etc...]
!
line ssh 0 4
access-class admin-access in
!
line telnet 0 4
access-class admin-access in
!
http ip access-class admin-access in
!
http ip secure-access-class admin-access in
!
Example of wildcard mask for internal network, this can be tricky if you aren't familiar with it.
permit 192.168.1.0 0.0.0.255
Subtract each octet of a regular netmask from 255 and you're good to go.
For some versions of AOS the "ip" keyword is missing from the http commands, just use:
http access-class admin-access in
http secure-access-class admin-access in
if it gives you an error.