#!/usr/local/bin/perl my $originating_machine; #logic to find the originating machine if ($originating_machine =~ /allowed_machine_name/) { #do something } else { print("cant continue"); exit 1; } [download]
In reply to Run only if it the request is originating from a specific machine by calsaint