Larieu -
Like Mary, I don't use the mediawiki contrib extensively.
However, there are a couple basic SME issues you should consider:
Local Networks
Adding your remote systems as local networks allows wide access to your SME server from those systems, potentially including access that will expose usernames and passwords to intermediate networks (eg FTP, authenticated SMTP without SSL encryption).
Be sure to consider all such services carefully for potential security issues if you choose to leave the remote systems defined as local networks.
restricted access to https
Defining "mediawiki" as a service, then restricting remote IP addresses, doesn't give the SME server enough data to correctly customize the firewall.
iptables restricts traffic based on source ip, destination ip, source port, destination port and protocol. SME creates the iptables startup script (/etc/rc.d/init.d/masq) by creating rules for each service that includes a TCPPort or UDPPort setting. The results are undefined if you create two services with the same TCPPort settings.
Since https access to /webmail, mediawiki, and any other ibays all use port 443 by default, you cannot have differing firewall rules for these different URLs.
If you want to restrict all remote access to all https services, you need to set AllowHosts for the existing service with TCPPort=443 - the "modSSL" service:config setrop modSSL AllowHosts a.b.c.d,w.x.y.z
signal-event remoteaccess-update
If you only want to restrict access to mediawiki but not to all other https services, one of the following solutions might work:
* Move mediawiki to a new virtual host that uses a different port number (4443, for example) by customizing /etc/httpd/conf/httpd.conf (sadly, I don't know what would be required for this), add that port to the service definition for mediawiki using config setprop mediawiki TCPPort 4443, then restrict access to that new port using config setprop mediawiki AllowHosts a.b.c.d,w.x.y.z
* Locate and install a mediawiki module that can be used to restrict access by IP address