آلمان تجهیزات ۵G هواوی را ممنوع نکرد

به نقل از سایت اخبار فناوری اطلاعات و ارتباطات ، فن آوری های نوین :    

به گزارش خبرگزاری مهر به نقل از آسوشیتدپرس، آلمان پیش نویس دستورالعمل های امنیتی برای شبکه های بی سیم نسل پنجم را منتشر کرده که در آن به ممنوعیت هواوی اشاره ای نشده است. این در حالی است که  آمریکا هشدار داده چنانچه متحدانش از تجهیزات این شرکت چینی استفاده کنند از اشتراک گذاری اطلاعات خودداری می کند.

کاتالوگ سازمان فدرال شبکه آلمان شرایطی را برای شبکه های۵G جدید در بر دارد که شامل  گواهینامه تایید تجهیزات مهم و تضمین معتبر بودن تولیدکنندگان است. اما جالب آنکه در این میان به ممنوعیت هواوی هیچ اشاره ای نشده است.

از سوی دیگر هواوی نیز از اقدات دولت آلمان برای ایجاد یک فضای عادلانه برای تهیه کنندگان ۵G استقبال کرد. به گفته هواوی در چنین فضایی تمام فروشندگان شرایط یکسانی خواهند داشت و می توانند در ساخت شبکه های ۵G شراکت کنند.

این در حالی است که آمریکا  مشغول لابی با متحدانش در اروپا است تا از خدمات هواوی استفاده نکنند.

136
0 0

لینک های مفید

طراحی لوگو دراصفهان

بانک اطلاعات مشاغل رایگان
لوازم یدکی جک JAC

کتاب های ادبیات آمریکای لاتین

سنگ چینی

کرم گریم


$(window).load(function () { 'use strict'; function activeStickyKit() { $('[data-sticky_column]').stick_in_parent({ parent: '[data-sticky_parent]' }); // bootstrap col position $('[data-sticky_column]') .on('sticky_kit:bottom', function (e) { $(this).parent().css('position', 'static'); }) .on('sticky_kit:unbottom', function (e) { $(this).parent().css('position', 'relative'); }); }; activeStickyKit(); function detachStickyKit() { $('[data-sticky_column]').trigger("sticky_kit:detach"); }; var screen = 768; var windowHeight, windowWidth; windowWidth = $(window).width(); if ((windowWidth < screen)) { detachStickyKit(); } else { activeStickyKit(); } // windowSize // window resize function windowSize() { windowHeight = window.innerHeight ? window.innerHeight : $(window).height(); windowWidth = window.innerWidth ? window.innerWidth : $(window).width(); } windowSize(); // Returns a function, that, as long as it continues to be invoked, will not // be triggered. The function will be called after it stops being called for // N milliseconds. If `immediate` is passed, trigger the function on the // leading edge, instead of the trailing. function debounce(func, wait, immediate) { var timeout; return function () { var context = this, args = arguments; var later = function () { timeout = null; if (!immediate) func.apply(context, args); }; var callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(context, args); }; }; $(window).resize(debounce(function () { windowSize(); $(document.body).trigger("sticky_kit:recalc"); if (windowWidth < screen) { detachStickyKit(); } else { activeStickyKit(); } }, 250)); });