Data suspendării: {{ $dnsZone->suspended_at->format('d.m.Y H:i:s') }}
Motiv: {{ $dnsZone->suspension_reason }}
@php $alert = $dnsZone->getActiveNameserverAlert(); @endphp @if($alert)Detectat prima dată: {{ $alert->first_detected_at->format('d.m.Y H:i:s') }} ({{ $alert->getDaysSinceDetection() }} zile)
@endifSistemul nostru a detectat că nameserverele sunt acum configurate corect. Poți reactiva zona apăsând butonul de mai jos.
Sfat: Folosește whatsmydns.net pentru a verifica propagarea NS-urilor.
| {{ __('Name') }} @if($sortBy === 'name') @else @endif | {{ __('Type') }} @if($sortBy === 'type') @else @endif | {{ __('Status') }} @if($sortBy === 'is_active') @else @endif | {{ __('Actions') }} | |
|---|---|---|---|---|
| @if(!in_array($record->type, ['SOA'])) @endif |
{{ $record->name }}
|
{{ $record->type }} | @if($record->is_active) Activ @else Inactiv @endif |
@if((isset($isPowerDNSOnly) && $isPowerDNSOnly) || (isset($record->is_powerdns) && $record->is_powerdns))
{{-- Acțiuni pentru înregistrări PowerDNS --}}
@php
// Reconstruiește FQDN pentru rute PowerDNS
$recordFqdn = $record->name === '@'
? $dnsZone->domain
: $record->name . '.' . $dnsZone->domain;
@endphp
@if(!in_array($record->type, ['SOA', 'NS']) || Auth::user()->isAdmin())
@if($dnsZone->suspended_at)
@elseif(Auth::user()->canPerformDnsOperations())
@else
@endif
@endif
@if(!in_array($record->type, ['SOA', 'NS']))
@if($dnsZone->suspended_at)
@elseif(Auth::user()->canPerformDnsOperations())
@else
@endif
@endif
@else
{{-- Acțiuni pentru înregistrări locale --}}
@php
// Verifică dacă recordul este sincronizat cu Cloudflare și obține setările
$cfRecordSetting = null;
$isCloudflareRecord = false;
if (isset($cfZone) && $cfZone) {
$cfRecordSetting = \App\Models\CloudflareRecordSetting::where('dns_record_id', $record->id)
->where('cloudflare_zone_id', $cfZone->id)
->first();
$isCloudflareRecord = $cfRecordSetting !== null;
}
// Tipuri de recorduri care pot fi proxied în Cloudflare
$proxyableTypes = ['A', 'AAAA', 'CNAME'];
@endphp
@if(!in_array($record->type, ['SOA', 'NS']) || Auth::user()->isAdmin())
@if($dnsZone->suspended_at)
@elseif(Auth::user()->canPerformDnsOperations())
{{-- Buton Duplicare Record --}}
@if(!in_array($record->type, ['SOA']))
@endif
@else
@endif
@endif
{{-- Buton Proxy Toggle pentru Cloudflare (doar pentru A, AAAA, CNAME) --}}
@if($isCloudflareRecord && in_array($record->type, $proxyableTypes))
@elseif($isCloudflareRecord)
{{-- Record CF dar nu suportă proxy --}}
@endif
@if(!in_array($record->type, ['SOA', 'NS']))
@if($dnsZone->suspended_at)
@elseif(Auth::user()->canPerformDnsOperations())
{{-- Toggle button - blocat pentru Cloudflare --}}
@if($isCloudflareRecord)
@else
@endif
{{-- Delete button - funcționează și pentru Cloudflare --}}
@else
@endif
@else
@if(Auth::user()->isAdmin())
@else
@endif
@endif
@endif
|
Nu au fost găsite înregistrări DNS pentru acest domeniu
Gestionează înregistrări @elseAdaugă prima înregistrare DNS pentru acest domeniu
{{ __('Add Record') }} @endifLoading...
Loading...
Copiază înregistrările DS și adaugă-le la registrul domeniului pentru a activa DNSSEC.
Odată ștearsă, înregistrarea nu va mai putea fi recuperată. Asigură-te că vrei să continui.
Ștergerea acestei înregistrări poate afecta funcționarea zonei DNS!
Zonă: {{ $dnsZone->domain }}
Proprietar: {{ $dnsZone->user->name }}
Selectează utilizatorul către care dorești să transferi această zonă DNS.