我被要求在工作中编写一个脚本,如果IP停止允许我们在端口23上访问telnet,它将向我们的支持电子邮件发送电子邮件。我已经掌握了我需要的东西,但是当IP没有拒绝访问时,脚本会打开telnet,我无法使用批处理文件中的命令将其关闭。 这是我到目前为止所得到的。很抱歉,如果已经有一个问题可以解答这个问题,我就无法找到它。
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Backpack\CRUD\CrudTrait;
use Cookie;
use App\Events\PollCreated;
class Poll extends Model
{
........
protected $events = [
'created' => PollCreated::class,
];
.......
public function speakers()
{
return $this->belongsToMany('App\Models\Speaker','poll_speaker','poll_id','speaker_id');
}
}