Need help firewall filter??

Some noob problem
I Need to drop ports 5060,5061,5062 except for ip 10.10.10.1, and ip range 10.10.20.0/24,10.10.30.0/24
need some help for the code
/
chain=forward action=drop protocol=udp ???src-address=!10.10.10.1;10.10.20.0/24;10.10.30.0/24??? src-port=5060,5061,5062

don’t know how to put more ip addres in src-address tab.

Tnx..

ip firewall filter add src-address-list=!EXEPTION_1

and specify the ip address in the EXEPTION_1

Yes but I need to specified more than one ip address
10.10.10.1;10.10.20.0/24;10.10.30.0/24

/ip firewall address-list add address=10.10.10.1 list=exceptions
/ip firewall address-list add address=10.10.20.0/24 list=exceptions
/ip firewall address-list add address=10.10.30.0/24 list=exceptions
/ip firewall filter add chain=forward protocol=udp src-port=5060-5062 src-address-list=!exceptions action=drop